

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 98vh;
  flex-direction: column;
  background-color: #27badb;
  color: black;
  font-family: Verdana;
}



/* building blocks */
box-v {
  display: block;
  max-height: 100vh;
  width: 35vw;
  padding: 8px;
}
box-h {
  display: block;
  height: 30vh;
  width: 90%;
  margin-top: 2.5%;
  min-height: 15vh;
  padding: 16px;
}
container {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
container-v {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}