body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    box-sizing: content-box;
}


.logo {
    width: 100%;
    text-align: center;
}

.logo img {
    width: 300px;
}

.instagram {
    width: 100%;
    text-align: center;
}

.instagram img {
    width: 30px;
    height: 30px;
}


.prenota {
    margin-top: 60px;
}


.prenota a {
    background-color: #401F18;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    text-transform: uppercase;
    font-weight: 400;
}

.prenota a:hover {
    box-shadow: none;

}

.container {
    margin: 25px;
}

.address {
    padding: 15px 0;
    text-align: center;
}




/*POP UP*/
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.popup {
    font-family: Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 40%;
}

.popup-content {
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;

}

@media (max-width: 768px) {
    body {
        height: calc(100vh - 140px);
    }

    .logo img {
        width: 250px;
    }


    .popup {
        width: 90%;
    }

}