.nova-slim-regular {
    font-family: "Nova Slim", system-ui;
    font-weight: 400;
    font-style: normal;
}  
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0;
    margin-top: 50px;
    margin-bottom: 0px;
    background-color: #4a7a96;
    
}
.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    gap: 10px;
    width: 90%;
    max-width: 1200px;
    margin-top: 20px;
    padding: 20px;
    background-color: #ee8695;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #292831;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
.header .title {
    font-size: 24px;
    font-family: "Nova Slim";
}

.header .nav-buttons {
    display: flex;
    gap: 10px;
    margin-right: 50px;
}

.header .nav-buttons button {
    padding: 10px 15px;
    background-color: #ee8695;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.header .nav-buttons button:hover {
    background-color: #fbbbad;
}

/* Hidden on browser and visible on mobile */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
}

.header2 {
    grid-column: span 5;
    background-color: #333f58;
    color: white;
    font-family: "Nova Slim";
    height: 35px;
    text-align: center;
    padding-top: 25px;
}
.section1 {
    grid-column: span 3;
    background-color: #fbbbad;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 10px;
}
.section2 {
    grid-column: span 2;
    background-color: #fbbbad;
    text-align: center;
    padding-top: 20px;
    padding-left: 13px;
    padding-right: 27px;
    padding-top: 20px;
    padding-bottom: 10px;
}
.box {
    grid-column: span 1;
    background-color: #fbbbad;
    height: 35px;
    text-align: center;
    padding-top: 25px;
}
.smallPic {
    grid-column: span 1;
    background-color: #fbbbad;
    height: 35px;
    text-align: center;
    padding-top: 25px;
}
.empty {
    grid-column: span 1;
    background-color: rgb(255, 255, 255);
    height: 35px;
    text-align: center;
    padding-top: 25px;
}
.footer {
    grid-column: span 5;
    background-color: #8d697a;
    height: 35px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 25px;
}
/* Media query for mobile devices */
@media (max-width: 600px) {
    .container {
        grid-template-columns: 1fr;
        padding-top: 10px;
    }
    .hamburger {

        display: block;
        position: absolute;
        top:10px;
        right: 110px;

    }

    .header, .header2, .section1, .section2, .box, .footer {
        grid-column: span 1;
        grid-row: auto;
    }

    .top-nav {
        flex-direction: row;
       
    }

    .nav-buttons {
        visibility: hidden;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        z-index: 999; /* Ensure nav is above content */
        border: 1px solid #555;
    }

    

    .nav-buttons button {
        padding: 15px 20px;
        border-bottom: 1px solid #444;
        width: 100%;
        text-align: center;
    }

    .nav-buttons.active {
       visibility: visible;
    }
}