/* Allgemein */

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
}

.green{
  color: #1D9485
}

/* Navigation */

.navbar {
  border-bottom: solid 2px;
  
}
.nav-link {
  color:black;
  cursor:pointer;
}

.nav-link:active,
.nav-link:hover {
  color: #1d9484 !important;
}

/* Slider */

.slider-image {
  width: 100vw;
  height: 70vh;
  background-size: cover;
  background-position: center;
}

/* Welcome-Section */

#welcome {
  width:auto;
  height: auto;
  color: white;  
  background-color: #5B5B5B ;
  text-align:left;
  padding-top: 30px;
  padding-bottom: 20px;
}



#welcome .container h1{
  font-size: 1.8rem;
  font-style: bold;
}

#welcome .container p{
  padding-top: 10px;
  
}

/* Angebote */

#products {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #1d9484;
}

#products h2{
  padding-bottom: 20px;
}



#products .card-image {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
}

/* About-Section */

#about {
  background-color: #5B5B5B;
  color: white;
  padding-top: 30px;
  padding-bottom: 10px;
}

#about h3 {
  color: #1d9484;
}
 
.about-image {
  width: 200px;
  height: 200px;
  border-radius: 50% ;
  background-size: cover;
  background-position: center;
 
}

#about .team-member{
  padding-top: 10px;
  
  
}
/* Footer-Section */

#main-footer {
  min-height: 150px;
  padding: 52px;
  background-color:#1d9484;
  
  
}

#main-footer p {
  color:white;
  text-align: center;
}

#main-footer p a {
  color: white;
}

#main-footer p a:hover {
  font-weight: bold;
}

