@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* RESET */
* {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FONTS */
.gilda-display-regular {
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
}


.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}


/* BODY */
body {
    background-color: #FCF6F1;
    padding-bottom: 5%;
}
/* HEADER */

header img {
    width: 40%;
    display: block;
    margin: 0 auto;
}

section{
    background-color: #DFA898;
    width: 90%;
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 5%;
}

h2{
    text-transform:uppercase;
    text-align: center;
    background-color:#4C3524;
    color: #FCF6F1;
    font-weight: 900;
    font-size: 2rem;
    padding: 2% 0;
}

.author-content,
.hayden-content {
    display: flex;
}

.author-content img {
    width: 40%;
}

.hayden-content video {
    width: 60%;
}

.hayden-content img {
    /* transform: rotate(15deg); */
    width: 30%;
}

.author-content div,
.hayden-content video {
    padding: 5%;
}

.author-content p {
    font-size: 1.5rem;
    line-height: 3rem;
    margin-bottom: 3%;
}

a {
    display: block;
    margin: 0 auto;
    width: 30%;
    background-color:#4C3524;
    color:#FCF6F1;
    text-align: center;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 2%;
    font-weight: 500;
}

a:hover {
    background-color:#DFA898;
    color:#4C3524;
    transition: all;
    transition-duration: 2s;
}