html {
    font-size: 62.5%;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #922826;
}

a {
    text-decoration: none;
}


/* --- TEXT PROPERTIES --- */

h1, h2, h3, h5, h6, p {
    margin-block-end: 0;
    margin-block-start: 0;
}

h1 {
    text-align: center;
    font-size: 7rem;
    font-weight: 700;
}

h2 {
    font-size: 3.3rem;
    font-weight: 700;
}

h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
}

h5 {
    font-size: 2rem;
    font-weight: 600;
}

h6 {
    font-size: 1.3rem;
    font-weight: 500;
}

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


/* --- NAVBAR --- */

.navbarWrapper {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
    display: flex;
    position: fixed;
    padding: 1.3rem 3.5rem;
    transition: 0.2s;
    z-index: 100;
}

.innerNavbarWrapper {
    display: flex;
    margin-left: 3rem;
}

.logoItem {
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logoPicture {
    max-width: 6.5rem;
}

#logoText {
    margin-left: 5%;
}

#firstNavbarItem {
    margin-left: 5%;
}

.navbarItem {
    cursor: pointer;
    min-width: 15rem;
    margin: 0 1.5% 0 1.5%;
    padding: 0.9%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 1.2rem;
    transition: 0.2s;
}

.navbarItem:hover {
    background-color: rgba(244, 170, 3, 0.2);
}

.navbarItem:active {
    background-color: rgba(190, 133, 0, 0.3);
}

.navbarItem span {
    margin-left: 10%;
    font-size: 1.6rem;
    color: #922826;
}

.navbarItem img {
    max-width: 1.5rem;
}


/* --- HAMBURGER MENU --- */


.burgerOpener {
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    margin-right: 5rem;
    padding: 2rem;
    border-radius: 1.2rem;
    transition: 0.2s;
}

.burgerOpener img {
    min-width: 2.5rem;
}

.burgerOpener:hover {
    background-color: rgba(244, 170, 3, 0.2);
}

.burgerOpener:active {
    background-color: rgba(190, 133, 0, 0.3);
}

.burgerWrapper {
    width: 100%;
    display: none;
    justify-content: flex-end;
    position: fixed;
    margin-top: 9.1rem;
}

.burgerMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    padding: 2% 0 1% 0;
    background-color: #fff;
}

.burgerItem {
    width: 80%;
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 2%;
    font-size: 1rem;
    border-radius: 0.8rem;
    transition: 0.2s;
    color: #922826;
}

.burgerItem:hover {
    background-color: rgba(244, 170, 3, 0.2);
}

.burgerItem:active {
    background-color: rgba(190, 133, 0, 0.3);
}

@media only screen and (max-width: 800px) {

    .navbarItem {
        display: none;
    }

    .navbarWrapper {
        justify-content: space-between;
    }

    .burgerOpener {
        display: flex;
    }

    .burgerItem {
        font-size: 1.5rem;
    }
}


@media only screen and (max-width: 450px) {

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    #logoText {
        display: none;
    }
}