html {
  margin: 0;
  padding: 0;
  font-family: Calibri;
  background-color: #2f468a;
}
body {
  text-align: center;
  margin: 0;
  padding: 0;
}
h1 {
  color: white;
  padding: 2vh;
}
.section {
  width: 90vw;
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1e2d59;
}
.section h2 {
  color: white;
  font-size: 7vh;
}
.item-img {
  width: 40vw;
  min-height: 30vh;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right;
}
.item-text {
  text-align: left;
  padding: 0 2vw;
}
.item {
  width: 60vw;
  min-height: 30vh;
  margin-bottom: 5vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 3vh;
  background-color: #2f468a;
  color: white;
  transition: 0.05s;
}
.item:hover {
  background-color: #d5ae32;
  transition: 0.05s;
  cursor: pointer;
}
.desc {
  font-size: 2.5vh;
}
