*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

html{
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(backgroung.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.navbar{
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.Logo{
    width: 100px;
    cursor: pointer;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0;
    background: #009688;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.5s;
}

.navbar ul li:hover::after{
    width: 100%;
}
.content{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: rgb(255, 255, 255);
}

.content h1{
    font-size: 70px;
    margin-top: 80px;
}
.content p{
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px; 
}
.shop{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    margin-top: 95%;
    color: white;
}
.shop h1{
    font-size: 70px;
}
.shop h2{
    font-size: 40px;
    text-decoration: underline;
}
.shop p{   
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px; }

.shop a{
    display: inline-block;
    padding: 5px 5px;
    background-color:transparent;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid black;
    transition: background-color 0.3s ease;

}
.shop a:hover{
    color: rgb(0, 0, 0);
    background-color:rgba(199, 199, 213, 0.481);
    
}

.product {
    display: inline-block;
    margin: 20px; /* Optional: Füge etwas Abstand zwischen den Produkten hinzu */
    margin-top: 50px;
    background-color: transparent;
}

.product img {
    width: 200px; /* Passe die Breite der Bilder nach Bedarf an */
    height: auto;
}

.product p {
    margin: 5px 0 0; /* Optional: Füge etwas Abstand zwischen dem Bild und dem Link hinzu */
    color: rgb(255, 255, 255);
}

  
button{
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #009688;
    background: transparent;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
   
}
span{
    background: #009688;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}
button:hover span{
    width: 100%;
}
button:hover{
    border: none;
}
