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

* {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Lato";
    font-weight: bold;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5em;
}

i {
    color: white;
    font-size: 1.5rem;
    font-weight: 100;
}

ul {
    list-style-type: square;
    font-size: 1.1rem;
    line-height: max(2vw, 1.5rem);
}

p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

strong {
    font-weight: bold;
    font-family: 'Lato';
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgb(240, 240, 240);
    height: 2rem;
    display: flex;
    gap: 1rem;
    padding-block: 1rem;
    z-index: 2;
    align-items: center;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.navbar > a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: black;
    transition: color 0.4s;
    align-items: center;
    width: 8rem;
    z-index: 2;
}

.navbar > a:hover {
    color: rgb(92, 186, 227);
}

.navbar > a > p {
    text-align: center;
    width: 100%;
    z-index: 2;
}

#navBanner {
    margin-left: 1rem;
    height: 2rem;
    width: auto;
    z-index: 2;
}

#navBannerSmall {
    height: 4rem;
    width: auto;
    z-index: 2;
    display: none;
}

.logo {
    height: inherit;
    width: inherit;
    object-fit: cover;
}

.header-room {
    height: 4rem;
}

footer {
    display: flex;
    flex-direction: column;
    margin: 1rem;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1000px) {
    #navBanner {
        display: none;
    }
    #navBannerSmall {
        display: block;
    }
    .navbar > a > p {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 750px) {
    footer {
        text-align: center;
    }
    .navbar > a {
        width: min-content;
        max-width: 6rem;
    }
}

@media only screen and (max-width: 750px) {
    .navbar > a > p {
        font-size: max(0.8rem, 3vw);
    }
}