@import url(https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap);

body {
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    font-family: "Quicksand", sans-serif;
    background-color: #333;
}
::selection{
    background-color: #FFFFFF;
}

main {
    background-color: #333;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.text {
    /*top: 40%;
    left: 50%;*/
    top: 15%;
    left: 30%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    pointer-events: auto;
}
.text h1 {
    font-weight: 800;
    font-size: 8rem;
    line-height: 0.75;
}
.menu-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    top: -100%;
    z-index: 200;
    background: linear-gradient(to bottom right, rgb(255, 67, 249), rgb(48, 113, 255));
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    opacity: 0;
    transition: 0.25s all ease-in-out 0.25s;
}
.menu-wrapper.active {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 1;
}

.menu-wrapper ul {
    margin: auto;
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.menu-wrapper ul li {
    padding: 1rem 0;
}
.menu-wrapper ul li button {
    border: 5px solid white;
    border-radius: 50vw;
    text-align: center;
    text-decoration: none;
    width: 25vw;
    height: 6vw;
    color: white;
    background-color: rgba(0,0,0,0);
    font-size: 2rem;
    transition: 0.5s;
    font-family: "Quicksand", sans-serif;
}
.menu-wrapper ul li button:hover {
    background-color: white;
    color: black;
}

@media (max-width: 1100px) {
    .text h1 {
        font-size: 5.8rem;
    }

}
@media (max-width: 725px) {
    .text h1 {
        font-size: 5rem;
    }
    header nav {
        padding: 0 1rem;
    }
    .logo {
        width: 45px;
    }
    header ul a {
        font-size: 0.73rem;
        padding: 0 0.9rem;
    }
    .menu-button {
        padding-left: 0.9rem;
    }
    .menu-button a {
        height: 30px;
        width: 30px;
    }
    .bg-img {
        width: initial;
        height: 264%;
    }
    .fg-img {
        width: initial;
        height: 160%;
    }
    
}

@media (max-width: 520px) {
    .text h1 {
        font-size: 3.3rem;
    }
    
}
button {
    font-family: "Quicksand", sans-serif;
}