@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
}

@media only screen and (max-width: 768px) {
    .nav-links {
        height: 100vh;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        padding: 1.5rem;
        position: absolute;
        left: 0%;
        top: -100vh;
        background-color: white;
        transition: 0.3s ease;
    }

    header .nav-links li {
        font-size: 3rem;
        font-weight: 700;
        margin: 0;
    }

    header .nav-links li:hover, .nav-links li:active {
        text-decoration: underline 3px solid black;
    }

    header .nav-icons {
        display: block;
    }

    header .nav-icons.cancel {
        position: absolute;
        top: calc(0% + 1rem);
        align-self: flex-end;
    }

    body.disabled {
        overflow: hidden;
    }

    .nav-icons.menu.hide {
        display: none;
    }

    nav.show .nav-links {
        top: 0%;
    }

    body p {
        font-size: large;
    }

    body br {
        display: block;
    }

    body .home-container{
        width: 100vw;
        align-items: stretch;
        text-align: left;
        padding: 0 1.5rem;
    }

    .home-container .home-links {
        width: 100%;
    }
}

header {
    display: flex;
    padding: 1rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    font-size: large;
    position: sticky;
    top: 0%;
    background-color: white;
}

.nav-logo {
    font-size: x-large;
    font-weight: 600;
}

.nav-links li {
    display: inline-block;
    font-weight: 600;
    margin-left: 1rem;
}

.nav-links li:hover {
    text-decoration: underline;
}

li, a {
    text-decoration: none;
    list-style: none;
    color: black;
}

.nav-icons {
    display: none;
}

.nav-icons:hover {
    cursor: pointer;
}

body h1 {
    font-size: 3.3rem;
}

p {
    font-size: x-large;
    color: rgb(112, 109, 121);
}

br {
    display: none;
}

.home-container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 75vh;
    justify-content: center;
    align-items: center;
    padding: 0 20vw;
    gap: 1.5rem;
    text-align: center;
}

.home-container.register {
    height: calc(75vh + 2rem);
}

.register mark {
    background-color: rgba(255, 255, 0, 0.7);
}

.our-services mark {
    background-color: rgba(0, 255, 255, 0.5);
}

.about-us mark {
    background-color: rgba(50, 255, 20, 0.7);
}

.our-team mark {
    background-color: rgba(200, 120, 255, 0.5);
}

.home-links {
    margin-top: 1rem;
    font-size: large;
    font-weight: bold;
    width: 450px;
    line-height: 3rem;
    border-radius: 0.5rem;
    text-align: center;
}

.home-links-wrapper {
    display: flex;
    gap: 1rem;
}

.home-links.register {
    background-color: rgba(255, 255, 0, 0.7);
}

.home-links.register:hover, .home-links.register:active {
    background-color: yellow;
}

.home-links.our-services {
    background-color: rgba(0, 255, 255, 0.5);
}

.home-links.our-services:hover, .home-links.our-services:active {
    background-color: rgba(0, 255, 255, 0.9);
}

.home-links.about-us {
    background-color: rgba(50, 255, 20, 0.7);
}

.home-links.about-us:hover, .home-links.about-us:active {
    background-color: rgb(50, 255, 20);
}

.home-links.our-team {
    background-color: rgba(200, 120, 255, 0.5);
}

.home-links.our-team:hover, .home-links.our-team:active {
    background-color: rgba(200, 120, 255, 0.8);
}