body {
  margin: 0;
  padding: 0;
  /* font-family: Georgia, Cochin, Georgia, Times, 'Times New Roman', serif; */
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
}

.header {
  height: 150px;
  display: flex;
  align-items: center;
  background-color: white;
}

.header .logo {
  flex: 1;
  margin: 20px 0px 0px 60px;
  text-align: left;
}

.header .logo img{
  width: 220px;
  height: 140px;
}

.header .menu {
  margin: 20px 60px 0px 0px;
  display: flex;
  align-items: center;
}

.header .menu ul {
  list-style: none;
  padding: 0px;
}

.header .menu li {
  margin: 0 10px;
  float: left;
  display: block;
}

.header .menu li a {
  text-decoration: none;
  color: #000;
  font-size: 24px;
  padding: 0px;
}

.header .menu li a:hover {
  color: rgba(174, 126, 92, 0.776);
  text-decoration-line: underline;
}

.main {
  margin: 20px 60px 20px 60px ;
  text-align: center;
}

.main .container {
  position: relative;
  width: 100%;
}

.main .container .btn {
  position: absolute;
  top: 23%;
  left: 82%;
  transform: translate(-50%, -50%);
  background-color: rgba(174, 126, 92, 1);
  color: white;
  font-family: big-caslon;
  font-size: 22px;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .header {
    flex-direction: column;
    align-items: center;
    height: 220px;
    background-color: white;
  }

  .header .logo, .header .menu {
    margin: 10px 0;
  }


  .header .menu {
    flex-direction: row;
    justify-content: center;
  }
}

/* Anpassungen für Tablets */
@media (max-width: 768px) {
  .main .container .btn {
    font-size: 18px; /* Kleinere Schrift */
    width: 120px; /* Kleinere Breite */
    height: 120px; /* Kleinere Höhe */
    top: 20%; /* Anpassung der Position */
    left: 75%; /* Anpassung der Position */
  }
}

/* Anpassungen für Smartphones */
@media (max-width: 480px) {
  .main .container .btn {
    position: static; /* Vermeidet absolute Positionierung */
    margin: 20px auto; /* Zentriert den Button */
    font-size: 16px; /* Noch kleinere Schrift */
    width: 100px; /* Noch kleinere Breite */
    height: 100px; /* Noch kleinere Höhe */
    transform: none; /* Entfernt die Transformation */
  }
}


.container .btn:hover {
  background-color: rgb(118, 79, 50);
}

.main h1{
  margin-top: 20px;
  font-size: 40px;
  color: #000;
}

.main .main_sunatibas {
  margin: 20px 0px 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main .main_picture {
  margin: 20px 0px 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .main .main_picture {
    margin: 0px 0px 00px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.main .main_picture img {
  width: 80%;
}

@media (max-width: 480px) {
  .main{
    margin: 20px 20px 20px 20px;
  }

  .main .main_picture img {
    width: 100%;
  }
}


.main .main_sunatibas img {
  width: 50%;
}

.main .main_welcome {
  font-size: 22px;
}

.main .main_text {
  font-size: 20px;
  color: #000;
  margin: 20px 0px 50px 0px;
}

#welcome_text {
  margin: 20px 0px 0px 0px;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  ;
}





