*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: 'Archivo', sans-serif;
    min-height: 100dvh;
    width: 100vw;
    background-color: #f4f5f8;

}
.big-navbar {
    position: sticky;
    top:10px;
    z-index: 10;

    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.navbar {
    padding: .375rem .375rem .375rem .75rem;
    height: 48px;
    display: flex;
    justify-content: space-between;
    max-width: 81rem;
    width: 80%;
    border-radius: 0.5rem;
    background-color: #fffc;
    align-items: center;
    backdrop-filter: blur(30px);

}
.logo-in-navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 30%;
    text-decoration: none;
    margin-right: auto;
    white-space: nowrap;
}
.logo-in-navbar i {
    margin-right: 10px;
}
.first-logo-text {
    font-weight: 580;
    color: #da3b3b;
    font-size: 18px;
    margin-right: 5px;
}
.second-logo-text {
    font-weight: 580;
    color: hsl(194,28%,28%);
    font-size: 18px;
}
.navbar-links {
    width: 40%;
}
.navbar-links ul{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    list-style-type: none;

}
.navbar-links li{
    padding: 0 1rem;
    white-space: nowrap;
}
.navbar-links ul a {
    text-decoration: none;
    color: inherit;
}
.navbar-login {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 30%;
    margin: 0 auto;
}
.navbar-login a {
    background-color: #3d9be9;
    border: 0;
    padding: .5rem 1.25rem;
    color: white;
    font-weight: 500;
    border-radius: .25rem;
    text-decoration: none;
}

.hamburger-icon {
    display: none;
    cursor: pointer;
}

.shrunk-links-and-login {
    display: none;
    width: 80%;
    overflow: hidden;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    padding: 1.25rem;
    border: 1px solid black;
}
.shrunk-navbar-links li{
    padding: 0.75rem 0;
    font-size: 1.125rem;
    margin: 0 auto;

}
@keyframes growDown {
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}
@media (max-width: 1162px) {
    .navbar-login {
        display: none;
    }
    .navbar-links {
        display: none;
    }
    .hamburger-icon {
        display: inline-block;
        margin-right: 5px;
    }
    .shrunk-links-and-login.show {
        display: flex;
        position: absolute;
        top: 120%;
        z-index: 20;

        animation: growDown 300ms ease-in-out forwards;
        transform-origin: top center;
    }
    .shrunk-navbar-links ul {
        text-align: center;
        list-style: none;

    }

    .shrunk-navbar-links a {
        color: black;
        text-decoration: none;
    }
    .shrunk {
        display: flex;
    }
    .everything-but-navbar {
        position: relative;
        top:-300px !important;
    }
    .shrunk {
        margin: 0;
        justify-content: center;
    }
}
i {
    color: hsl(194,28%,28%);
}
@media (max-width: 412px) {
    .second-logo-text {
        display: none;
    }
}


footer {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    background-color: hsl(194,28%,28%);
    padding: 20px;
    margin-top: 100px;
}

.footer-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    width: 300px;
    text-decoration: none;
    color: lightgray;
    font-size: .75rem;
}
.footer-group a {
    text-decoration: none;
    color: lightgray;
}

