main {
    min-height: 100vh;
    background-color: white;
    width: 100%;
}

.pizzalogo {
    position: relative;
    border-radius: 10%;
    width: 150px;
    height: 150px;
    top: 75px;
}

.food {
    max-width: 1440px;
    width: 100%;   
}

.mainpic {
    height: 180px;
    width: 100%;
    background-image: url(./assets/img/mainpic.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.food a {
    margin-right: 14px;
    color: rgb(255, 166, 0);
    text-decoration: none;
    font-size: 28px;
}

.food h2 {
    padding-top: 15px;
}

.content {
    display: flex;
    justify-content: center;
    padding: 30px 20px 20px 20px;
    
}

#pizza-container, #pasta-container {
    background: white;
    border-radius: 10px;
    padding-top: 30px;
}

.dish {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.dish img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.dish:hover {
    color: #e68a00;
}

.dishinfo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.infocontainer {
    display: flex;
    gap: 20px;
}

@media (max-width: 900px) {
    .content {
        display: block;    
    }
}

@media (max-width: 600px) {
    header img {
        width: 180px; 
    }

    .food a {
        font-size: 20px; 
        margin-right: 10px;
    }

    .mainpic {
        height: 160px; 
    }

    .pizzalogo {
        width: 100px;
        height: 100px;
        top: 45px;
    }

    .dish {
        flex-direction: column; 
        padding: 5px;
        margin-bottom: 20px;
    }

    .dish img {
        width: 130px; 
        height: 130px;
    }

    .dishinfo {
        gap: 0;
    }

    .infocontainer {
        padding-bottom: 10px;
    }

    footer img {
        width: 120px; 
    }

    .content {
        flex-direction: column;
        padding: 25px;
    }
}

@media (max-width: 450px) {
    
    header img {
        width: 130px;
    }

    .mainpic {
       height: 140px;
    }

    .food a {
        font-size: 18px; 
        margin-right: 10px;
    }

    .food img {
        width: 70px;
        height: 70px;
        top: 30px;
    }

    .dish img {
        width: 100px;
        height: 100px;
    }

    .dishinfo h3 {
        font-size: 16px;
    }

    .dishinfo p {
        font-size: 14px;
    }
}