#main{
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.horizontal-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-evenly;
}

.vertical-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image{
  width: 80%;
  height: auto;
}