* {
  margin: 0px;
  box-sizing: border-box;
  font-size: 4vh;
  color: white;
  font-family: Arial;
}

.container {
  background: grey;
  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: grey;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: header;
}

.main {
  background: lightgrey;
  display: flex;
  align-items: center;
  justify-content: top;
  grid-area: main;
  flex-direction: column;
  overflow: auto;
  padding-top: 30px;
  padding: 30px;
  gap: 10%;
}

.sidebar {
  background: lightslategray;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: sidebar;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.footer {
  background: darkgray;
  display: flex;
  align-items: center;
  justify-content: left;
  grid-area: footer;
}

h1 {
  font-size: 6vh;
  color: black;
  font-weight: lighter;
}

button {
  background-color: lightslategray;
  width: 29vh;
  height: 10vh;
  transition-duration: 1s;
  border: none;
}

button:hover {
  background-color: crimson;
  width: 33vh;
  height: 13vh;
  font-size: 4vh;
}

a:link {
  text-decoration: none;
}

p {
  font-size: 3vh;
}
