
body{
    margin: 0;
    padding: 0;
    background-image: url('imgs/mantu.jpg');
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat; /* Verhindern, dass das Bild wiederholt wird */
    min-height: 100vh;

}
header{
    left: 0;
    right: 0;
    top: 0;
    width: auto;
    background-color:rgb(0, 0, 0);
    opacity: 0.9;
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
header ul 
{   
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 5vh;
    gap: 100px;
    padding: 0;
    margin: 0;
}

header ul a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 20px;
}
header .logo{
    height: 140px;
    width: 150px;
}
header .logo img
{
    position: relative;
    border-color: rgb(0, 0, 0);
    height: 100%;
    width: 100%;
}

.Welcomesection{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Welcomesection h1{
    text-align: center;
    font-weight: 700;
    font-size: 9vh;
    color: black;
}

.Bestfoodfoodtabel 
{
    display: grid;
    grid-template-columns: auto auto;
    gap: 100px;
    justify-content: center;
    align-items: center;
    background-image: url(imgs/mantu.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

