*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
    html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    }
    body {
    display: flex;
    flex-direction: column;
    }
    .content {
    flex: 1;
    }
    .menu-page{
        width: 100%;    
        max-width: 1440px;
        position: relative;
        margin: 0;
        position: absolute;
        top: 250px;
    }
    .menu{
        width: 100%;
        display: block;
        flex-direction: column;
        align-items: center;
        margin-top: 100px;
    }
    .line-with-text {
        width: 100%; 
        max-width: 1440px; 
        margin: 0 auto; 
        display: flex;
        align-items: center;
        text-align: center;
    }
    .line-with-text::before,
    .line-with-text::after {
        content: "";
        flex: 1;
        border-top: 4px solid #802317;
        margin: 0 10px;
        background-color: lightblue;
    }
    .line-with-text::before {
        margin-right: 50px;
    }
    .line-with-text::after {
        margin-left: 50px;
    }
    .line-with-text h1 {
        font-weight: bold;
        font-size: 40px;
        margin: 0;
        color: #802317;
    }
    .content-wrapper {
        display: flex; 
        align-items: center; 
        gap: 60px; 
        justify-content: center;
        margin-top: 100px;        
    }
    .content-wrapper li{
        display: flex;
        justify-content: space-between; 
        align-items: center;
        margin-bottom: 20px;
        width: 100%;
        max-width: 600px;
    }
    .content-wrapper p{
        font-size:30px ;
        margin: 0;
        color: #809A6C;
    }
    .content-wrapper ul {
    margin: 0;
    padding: 0;
    }
    .content-wrapper a{
        font-size: 40px;
        margin-right: 30px;
        text-decoration: none;
        color: #7D4D0F;
    }
    .content-wrapper img{
        width: 100%;
        max-width: 500px;
        height: auto;
        object-fit: cover;
    }

    /* MODAL */
    .modal{
        display: none;
        position: fixed;
        z-index: 1000;
        padding-top: 60px;
        left: 0;
        top: 100px;
        width: 100%;
        height: 120%;
        overflow: auto;
        background-color: rgba(0,0,0,8);
        animation: fadeIn 0.4s;
    }
    /* IMAGE */
    .modal-content{
        display: block;
        margin: auto;
        max-width: 80%;
        max-height: 80%;
        animation: zoomIn 0.4s;
    }
    /* CLOSE BUTTON */
    .close{
        position: absolute;
        top: 150px;
        right: 100px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }
    /* ANIMATION */
@keyframes zoomIn{
        from{transform: scale(0.7); opacity: 0;}
        to{transform: scale(1); opacity: 1;}
    }
@keyframes fadeIn{
        from{opacity:0;}
        to{opacity: 1;}
    }
    .footer{
        max-width: 1440px;
        position: absolute;
        top: 3200px;
    }



@media(max-width: 768px){
    *{
        max-width: 768px;
        height: auto;
        }
    .menu-page{
        width: 100%;
        max-width: 1440px;
        position: relative;
        top: 0; 
        margin-top: 250px;
        box-sizing: border-box;
        overflow-x: hidden;    
    }
    .menu{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .footer{
        position: absolute;
        top: 4650px;
    }
}



@media(max-width: 480px){
    .content-wrapper ul li a {
        font-size: 20px;
    }
}



@media screen and (max-width: 380px) {
    .footer {
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        padding: 10px;
        text-align: center;
        position: absolute;
        top: 4000px;
    }
    .footer img {
        width: 100%;
        height: auto;
        display: block;
    }
    .footer p {
        font-size: 14px;
        word-break: break-word;
    }
}



@media screen and (max-width: 320px) {
    .footer {
        padding: 8px;
    }
    .footer p {
        font-size: 12px;
    }
}
