* {
  margin: 0px;
  box-sizing: border-box;
  font-size: 2.5vh;
  color: white;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.container {
  background: #110934;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 15% 85%;
  grid-template-rows: 15% 80% 5%;
  grid-template-areas:
    "header header"
    "sidebar main"
    "footer footer";
}

.header {
  background: #347b98;

  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: header;
}

.main {
  background: #d4edf7;
  color: #110934;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  grid-area: main;

  gap: 10%;
  padding: 30px;
  padding-top: 100px;
}
.sidebar {
  background-color: #0247fe;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: sidebar;
  flex-direction: column;
  justify-content: space-evenly;
}

.footer {
  background: #4424d6;

  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: footer;
}
h1 {
  font-weight: bold;
  font-size: 6vh;
}

button {
  background-color: #110934;
  border-radius: 15px;
  border-width: 0px;
  border-radius: 10px;
  font-size: 2vh;
  cursor: pointer;
  transition-duration: 2s;
  height: 5vw;
  width: 15vh;
}

.textinspalten {
  columns: 3;
  font-size: 2.5vh;
  line-height: 120%;
  gap: 50px;
}

button:hover {
  background-color: aqua;

  font-size: 2vh;
}
