@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
}
body {
    background-color: #E5DDD4;
}
section {
    height: min-content;
    padding: 50px 0;
}
nav {
    height: 175px;
    align-items: center;
    display: flex;
    justify-content: column;
    margin: 0 215px;
}
footer {
    padding: 50px 250px;
    background-color: #000000;
    color: #FFFFFF;
}
.nav-row {
    padding: 0 75px;
    display: flex;
    justify-content: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    border-bottom: 0.01em solid #000000;
}
.ham-menu-icon {
    width: 40px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.ham-menu-icon hr {
    border: 0.01em #000000 solid;
}
.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #ff6b00, #ff8c00);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1000;
    padding-right: 80px;
    box-sizing: border-box;
}

.menu-items {
    list-style: none;
    padding: 0;
    text-align: right;
    margin-right: 0;
}

.close-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    font-size: 3em;
    color: #ffffff80;
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 50%;
    padding: 0 15px;
    margin-left: 25px;
}
.full-screen-menu.open {
    opacity: 1;
    visibility: visible;
}
.menu-items li {
    margin: 20px 0;
}
.menu-items a {
    color: #ffffff80;
    text-decoration: none;
    font-size: 4em;
    font-weight: 500;
    transition: color 0.3s ease;
    border-radius: 5px;
    font-family: 'Arapey';
    font-size: 120px;
}
.menu-items a:hover {
    color: #fff
}
.close-button:hover {
    color: #fff;
}
.blank-announcement {
    height: 60px;
}
.site-announcement {
    padding: 10px;
    background-color: #000000;
    color: #E5DDD4;
    padding: 5px;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 1;
}
.site-announcement a {
    color: #ff8c00;
}
.hero-section {
    height: 80vh;
}
.card--orange {
    background: #FF914D40;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 5px 5px 50px #00000020;
}
.card--white {
    background: #FFFFFF40;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 5px 5px 50px #00000020;
}
#register-button {
    color: #ffffff;
    background-color: #000000;
    height: min-content;
    padding: 8px 20px;
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 200;
    font-size: 16px;
    transition: 0.1s ease-in-out;
}
#register-button:hover {
    scale: 1.005;
    box-shadow: 5px 5px 20px #00000020;
}
footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
footer .title {
    height: 150px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
footer .footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
}
footer .social-links {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}
footer .social-links img {
    padding: 5px;
}
@keyframes appear {
    0% {
        opacity: 0;
        position: relative;
        bottom: -20px;
    }
    100% {
        opacity: 1;
        position: relative;
        bottom: 0px;
    }
}
@media (max-width: 1140px) {
    .menu-items a {
        font-size: 75px;
    }
}
@media (max-width: 768px) {
    nav #register-button {
        padding: 5px 10px;
    }
    nav {
        margin: 0 0;
        height: 100px;
    }
    nav img {
        height: 70px;
        margin: 0 10px;
    }
    .nav-row {
        padding: 0 10px;
    }
    footer {
        padding: 50px 0;
    }
    footer .footer-nav {
        display: flex;
        flex-direction: column;
    }
    footer .social-links {
        justify-content: center;
    }
    footer .left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    footer .right {
        margin-top: 50px;
    }
    .menu-items a {
        font-size: 35px;
    }
    .full-screen-menu {
        padding: 0 20px 0 0;
    }
    .close-button {
        font-size: 20px;
        left: -10px;
    }
}