body {
  background-color: #ffd5c2;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
}

p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

a {
  color: #c8553d;
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

a:after {
  background-color: #f28f3b;
  content: '';
  height: 2px;
  bottom: -2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  width: 100%;
}

a:hover {
  color: #f28f3b;
}

a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

a:active {
  color: #588b8b;
}

a:active:after {
  transform: scaleX(0);
  transform-origin: bottom right;
}

.main-header {
  cursor: default;
  margin-bottom: 10px;
  margin-top: 25vh;
  text-align: center;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.page-header {
  color: #c8553d;
  cursor: default;
  font-size: 3rem;
}

.subtitle {
  animation: fadeIn 6s;
  color: #727d71;
  cursor: default;
  font-size: 1rem;
  margin: 0 auto;
  max-width: 40%;
  text-align: center;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media screen and (max-width: 550px) {
  .subtitle {
    font-size: 0.75rem;
    max-width: 100%;
  }
}