#header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: red;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

a{
    text-decoration: none;
    outline: none;
    color: white;
}

body {
    background-image: url("../html6/pizza.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: white;
}

img{
    width: 685px;
    height: 635px;
    float: left;
    margin-top: 7%;
    margin-bottom: 7%;
    margin-left: 3%;
 }

.pizza-container {
    display: flex;
    justify-content: center;
    margin-top: 7%;
    float: right;
}

.pizza-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    background-color: red;
    padding: 20px;
    border-radius: 10px;
    width: 650px;
    text-align: center;
    margin-right: 3%;
}

.pizza-form h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}


.pizza-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.pizza-item:hover {
    transform: scale(1.03);
}

.pizza-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 10px;
}

button[type="submit"] {
    grid-column: 1 / -1;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: darkred;
    color: white;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
    background-color: darkred;
}

p {
    color: white;
    font-size: 22px;
    line-height: 1.5;
    text-align: center;
    margin-top: 20px;
    margin-left: 3%;
    float: left;
    background-color: red;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
}
