
.page-header{
    width: 100%;
    height: 125px;
    background-color: #eeece7;
    border-bottom: 2px solid gray;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 2px 5px #000000;
}
.header__navbar{
    height: 100%;
    display: flex;
    gap:48px;
    align-items: center;
    justify-content: flex-end;
    margin-right: 100px;
}

.navbar-button{
    padding: 24px;
    position:relative;
    color: #0c0701ff;
    font-size: 32px;
    font-family: 'Fjalla One', sans-serif;
    text-shadow: 1px 1px #000000;
    font-weight: 500;
    text-decoration-line: none;
}

.navbar-button::before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 3px; /* Adjust the thickness as needed */
    background: #000; /* Change the color as needed */
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
}

/* Define the hover state */
.navbar-button:hover::before {
    width: 60%;
}

footer{
    width: 100%;
    height: auto;
    background-color: #eeece7;
    border-top: 2px solid gray;
    border-radius: 10px 10px 0px 0px;
    box-shadow: 0px 2px 5px #000000;
    margin-top: auto;
}
.panel-footer{
    padding: 24px;
    display: flex;
    align-items: center;
}
.panel-footer > p{
    margin: 0px;
    font-size: 18px;
    text-align: center;
}
.footer__right{
    margin-left: auto;
    text-align: right;
    padding-left: 10px;
}
.footer__right > p{
    margin: 0px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media(max-width:800px){
    .page-header{
        height: 96px;
    }
    
    .header__navbar{
        gap:12px;
        justify-content: center;
        margin-right: 0;
    }
    .navbar-button{
        padding: 16px;
        font-size: 24px;
    }
    .panel-footer > p{
        font-size: 14px;
    }
}

@media(max-width:500px){
    .page-header{
        height: 80px;
    }
    
    .header__navbar{
        gap:8px;
    }
    .navbar-button{
        padding: 12px;
        font-size: 18px;
    }
    footer{
        height: auto;
    }
    .panel-footer{
        padding: 12px;
    }
}