/* GENERAL */

body {
    grid-template-rows: 70px 1fr;
}

/* HEADER */
header {
    width: 100%;
    height: 70px;

    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 1fr;
}

#nav-buttons {
    grid-column: 1, 2;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-button {
    height: 30px;
    min-width: max-content;
    padding: 0px 25px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 18px;
}

#nav-logo-container {
    grid-column: 2, 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav-logo {
    height: 50px;
}

#nav-icons {
    grid-column: 3, 4;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

img.nav-icon {
    height: 35px;
}


/* SECTION */



/* FOOTER */