* {
  margin: 0px;
  font-size: 4vh;
  color: white;
  box-sizing: border-box;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.container {
  background-color: brown;
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-template-columns: 15% 85%;
  grid-template-rows: 15% 80% 5%;
  grid-template-areas:
    "header header"
    "sidebar main"
    "footer footer";
}

.header {
  background-color: #448d76;
  grid-area: header;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main {
  background-color: #f7ddd4;
  grid-area: main;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  gap: 10%;
  padding: 30px;
  padding-top: 90px;
  overflow: auto;
}

.sidebar {
  background-color: #14b884;
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.footer {
  background-color: #093426;
  grid-area: footer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 2vh;
}

h1 {
  color: #fd4d0c;
  font-size: 7vh;
}

a:link {
  text-decoration: none;
  color: #fd4d0c;
}

/*
a:visited {
  color: #fd4d0c;
}

a:hover {
  color: #ad4d0c;
  text-decoration: underline;
}

a:active {
  color: #ad4d0c;
}
*/

button {
  background-color: goldenrod;
  width: 22vh;
  height: 6vh;
  border-radius: 10px;
  border-style: none;
  font-size: 3vh;
}

button:hover {
  background-color: darkgray;
  width: 24vh;
  height: 8vh;
}

button {
  background-color: goldenrod;
  width: 22vh;
  height: 6vh;
  border-radius: 10px;
  border-style: none;
  font-size: 3vh;
}

.button-impressum {
  background-color: red;
  width: 20vh;
  height: 2vh;
  border-radius: 10px;
  border-style: none;
  font-size: 1.5vh;
}
.button-impressum:hover {
  background-color: darkgray;
  width: 25vh;
  height: 2vh;
}

.font-impressum {
  font-size: 1.5vh;
  font-style: italic;
}
