html {
  min-height: 100%;
  display: flex;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  background-color: 0;
  background-image: url(/img/hintergrund.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


body{
  margin: 0;
  padding: 0;
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 10vh;
  padding-bottom: 5vh;
  justify-content: center;
  background-color: 0;
}

.container {
  width: 90%;
  max-width: 500px;
  min-width: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 20px;
  margin: 20px;
  text-align: center;
  
}

.header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.header h1 {
  font-size: 24px;
  margin: 0;
}

.header p {
  font-size: 16px;
  color: #777;
}

.contact p {
  margin: 5px 0;
}

.social a {
  text-decoration: none;
  color: #333;
  margin: 0 10px;
  font-size: 20px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.service-item {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 5px;                      
}

.footer a {
  text-decoration: none;
  color: #007bff;
  margin: 5px;
  display: inline-block;
}

@media (max-width: 550px) {

  body {
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    justify-content: center;
    margin: 3vh;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .service-item {
    flex: 1 1 30%;
    margin: 5px;
  }
}
