body,
html {
    height: 100%;
    margin: 0;
}

body {
    background-image: url('images/pizzazoom1.jpg');
    display: grid;
    place-items: center;
    font-family: 'Open Sans', sans-serif;
}

header,
main {
    position: relative;
    background-color: white;
    border: 3px solid green;
    border-radius: 10px;
    /* Adjust as needed */
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Optional: subtle shadow */
    width: 80%;
    text-align: left;
    float: left;
    margin-bottom: 10px;
}

main {
    padding-bottom: 180px;
}

.hide {
    display: none;
}

.imatti-image {
    max-width: 100%;
    /* Don't exceed parent width */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
}

.fiat-image {
    position: absolute;
    top: 0px;
    right: 100px;
    width: 150px;
    height: 90px;
}

#phoneus {
    font-size: 1.5em;
    font-variant: normal;
    font-weight: bold;
    text-align: center;
    color: #0ca237;
    padding: 0;
}

.pizzaholder {
    text-align: center;
}

.pizza-image {
    width: 150px;
    height: 100px;
}

section h2 {
    font-size: 2em;
    text-align: left;
    color: #0ca237;
    margin-top: 20px;
    margin-bottom: 20px;
}


.maintext {
    text-justify: inter-word;
    font-family: 'Pacifico', cursive;
    font-weight: bold;
    font-size: 1.4em;
}

ul.pizzalist {
    list-style-type: none;
    padding: 0;
}

ul.pizzalist li {
    margin: 5px 0 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

div.pizzalist .name {
    font-weight: bold;
    font-size: 1.2em;
}

div.pizzalist .ingredients {
    font-style: italic;
    color: #555;
    padding-right: 1.4em;
}

div.pizzalist .price {
    float: right;
    font-weight: bold;
    font-size: 1.2em;
}

.vespa-image {
    position: absolute;
    bottom: 5px;
    right: 20px;
    width: 150px;
    height: 190px;
}