h1 {
    font-family: 'Unbounded';
}

p {
    font-family: 'Inclusive Sans';
}

#menu {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-color: #FF5300;
    position: fixed;
    top: 0;
    z-index: 1;
    padding: 18vw 10vw;
    visibility: hidden;
    opacity: 0;
    transition: 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: top;
    transform: scale(1, 0.1);
}

#close-menu {
    margin-bottom: 5vw;
    margin-left: 4vw;
}

#close-menu:before,
#close-menu:after {
    display: inline-block;
    content: ' ';
    height: 10vw;
    width: 0.4vw;
    background-color: #fff;
}

#close-menu:before {
    transform: rotate(45deg);
}

#close-menu:after {
    transform: rotate(-45deg);
}

#menu a {
    font-size: 7vw;
    color: #fff;
    font-family: 'Unbounded';
    display: block;
    padding: 7vw 0;
    text-align: left;
}

#title {
    font-family: 'Unbounded';
    color: #CDDC29;
    font-size: 11vw;
    text-align: center;
    padding-top: 50vw;
}

.intro {
    font-size: 3.5vw;
    color: #fff;
    line-height: 1.5;
    padding: 10vw;
}

header {
    width: 100%;
    padding-top: 15vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    position: fixed;
    background-color: #0064BC;
    top: 0;
    z-index: 100;
}

header img {
    width: 32vw;
    transition: 0.4s;
}

#open-menu {
    font-family: 'Homemade Apple';
    color: #fff;
    font-size: 4.5vw;
    position: absolute;
    left: 10%;
    top: 50%;
}

#rsvp {
    font-family: 'Homemade Apple';
    color: #FF6920;
    font-size: 4.5vw;
    position: absolute;
    right: 10%;
    top: 50%;
    text-align: center;
}

#rsvp::after {
    content: url('../images/RSVP.png');
    display: block;
    width: 100%;
}

p {
    font-family: 'Inclusive Sans';
    font-size: 3.3vw;
    color: #fff;
    line-height: 1.3;
}

.section {
    padding: 6vw 10vw 0 10vw;
}

.section h1 {
    color: #fff;
    font-size: 5.5vw;
    text-decoration: underline;
    margin-bottom: 9vw;
}

.section p {
    margin-bottom: 6vw;
}

.question {
    border: 1px solid white;
    border-radius: 25px;
    padding: 5vw;
    box-sizing: border-box;
    margin-bottom: 6vw;
}

.question h1 {
    font-size: 4vw;
    text-decoration: none;
    margin-bottom: 6vw;
}

.question a {
    color: #FF6920;
    font-family: 'Unbounded';
    text-decoration: underline;
}

.question p:last-of-type {
    margin-bottom: 0;
}

hr {
    margin: 0 10vw;
}

footer {
    text-align: center;
    font-size: 2.5vw;
    color: #9DBFC7;
    font-family: 'Inclusive Sans';
    margin: 5vw 0;
}