body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr; /* Neue Spalte mit 1fr hinzugefügt */
  height: 100vh;
  width: 100%;
  background-color: #fff;
  color: #c7ae6a;
}
header {
  background-image: url("logonobg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: cover;

  height: 20vh;
  width: 100%;
  display: grid;
  background-color: #153009;
  place-items: center;
}

main {
  display: grid;
  grid-template-rows: 20% 50% 30%;
  background-color: #fff;
  padding: 20px;
  overflow: auto;
}
#local-time,
#current-date {
  text-align: center;
  font-size: 45px; /* Schriftgröße auf 45px erhöht */
  font-weight: bold;
  margin: 20px 0;
}

button {
  width: 40%;
  background-color: #153009;
  color: #c7ae6a;
  font-size: 27px;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  padding: 15px;
  margin: 0 auto;
  display: block;
}
.container {
  background-color: #fff; /*153009 #020501 Containerfarbe hinzugefügt */
  width: 25%; /* Auto width */
  height: 40%; /* Auto height */
  margin-left: 40%;
  margin-right: 40%;
  border-radius: 20px;
  text-align: center;
  padding: 10px;
  color: #020501;
  font-size: 27px;
}
@media only screen and (max-width: 990px) {
  .container {
    background-color: #fff; /* 153009#020501 Containerfarbe */
    width: 80%; /* Auto width */
    height: 40%; /* Auto height */
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
    /*  color: #020501;  */
  }
  /*      }
            border-radius: 20px;
            padding: 15px;
            margin: 0 auto;
            display: block;

        } */
  .container {
    background-color: #fff; /*153009 #020501 Containerfarbe hinzugefügt */
    width: 25%; /* Auto width */
    height: 40%; /* Auto height */
    margin-left: 40%;
    margin-right: 40%;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
    color: #020501;
    font-size: 27px;
  }
}
@media only screen and (max-width: 600px) {
  header {
    height: 120px;
    justify-content: center;
    align-items: center;
  }
  header img {
    width: 80%;
  }
  main {
    padding: 10px;
  }
  button {
    width: 80%;
    margin-bottom: 20px;
  }
  .container {
    background-color: #fff; /* #020501 Containerfarbe */
    width: 80%; /* Auto width */
    height: 40%; /* Auto height */
    margin-left: auto;
    margin-right: auto;
    margin-top: 20%;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
    /*  color: #020501;  */
  }
}
