@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Gwendolyn:wght@400;700&family=Pacifico&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*,*::before,*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
    
    text-align: center;
    min-height: 100svh;
    max-height: 100lvh;

    background-color: #fc9c9c;
    color: white;

    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-style: normal;
}
.header {
    position: -webkit-sticky;
    position: sticky;
    top: 5svh;
}
.controls {
    position: -webkit-sticky;
    position: fixed;
    bottom: 5svh;
    width: 100vw;
}
.main {
    padding: 0 10vw 0 10vw;
}
.set {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 3em;
}
.quest {
    font-family: "Gwendolyn", serif;
    font-weight: 400;
    font-style: normal;

    font-size: 5em;
    margin: -2.5% 0 10vh 0;
}
img {
    width: 50%;
    height: auto;
}
.set-img {
    width: 50%;
    height: auto;
    margin-top: 10vh;
}
@media screen and (max-width: 600px){
    .set-img {
        margin-top: 2.5vh;
    }
}
.btn {
    font-family: roboto;
    text-decoration: none;
    appearance: button;
    border: solid transparent;
    border-radius: 16px;
    border-width: 0 0 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .8px;
    line-height: 20px;
    margin: 2.5%;
    outline: none;
    overflow: visible;
    padding: 13px 19px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transform: translateZ(0);
    transition: filter .2s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
   }
   
 /* Primary Button */
.btn-primary {
    background-color: #1899D6;
    box-shadow: 0 4px #1CB0F6;
}

.btn-primary:hover {
    background-color: #1CB0F6;
    box-shadow: 0 2px #1899D6;
    transform: translateY(2px);
}

.btn-primary:active {
    background-color: #0E75B0;
    box-shadow: 0 0 #1899D6;
    transform: translateY(4px);
}

/* Secondary Button */
.btn-secondary {
    background-color: #0D47A1;
    box-shadow: 0 4px #1565C0;
}

.btn-secondary:hover {
    background-color: #1565C0;
    box-shadow: 0 2px #0D47A1;
    transform: translateY(2px);
}

.btn-secondary:active {
    background-color: #083A8D;
    box-shadow: 0 0 #0D47A1;
    transform: translateY(4px);
}