*{
    margin: 0px;
    padding: 0px;
}
 
body{
    background-color: lightgreen;
}
 
.wrapper{
    margin: 0 auto;
    width: 968px;
    min-height: 20px;
}
 
header{
    background-color: green;
}
 
header nav{
    display: flex;
    justify-content: center;
}
 
header nav a{
    text-decoration: none;
    color: white;
    border: 3px solid white;
    font-size: xx-large;
    padding: 7px;
    margin: 90px;    
}
 
a:hover{
    background-color: white;
    background-color: lightgreen;
}
 
 
main {
    background-color: lightgreen;
    padding: 50px 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
 
main h1 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #004d00;
}
 
.bestellen {
    background-color: #008000;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}
 
.bestellen h4 {
    margin-bottom: 15px;
    color: #f0fff0;
    text-align: left;
    width: 100%;
    font-size: 1.2em;
}
 
.bestellen label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}
 
.bestellen input[type="text"],
.bestellen select {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
 
.bestellen input[type="submit"] {
    background-color: #004d00;
    color: white;
    font-size: 1em;
    padding: 10px 15px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
 
.bestellen input[type="submit"]:hover {
    background-color: #002a00;
}
 
.bestellen img {
    width: 200px;
    height: auto;
    margin: 10px 20px;
    border-radius: 5px;
    border: 2px solid white;
}
 
.bestellen p {
    font-size: 1em;
    color: #f0fff0;
    text-align: center;
    margin-top: 5px;
}
 
footer {
    background-color: #003300;
    padding: 30px;
    text-align: center;
    color: white;
}
 
footer h3, footer h4 {
    margin: 5px 0;
    font-weight: normal;
}
 
footer h3 {
    margin-bottom: 10px;
}
 
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        gap: 15px;
    }
 
    .bestellen {
        flex-direction: column;
        align-items: center;
    }
 
    .bestellen img {
        width: 100%;
        height: auto;
        margin: 15px 0;
    }
   
    main {
        padding: 30px 10px;
    }
}