body {
}
.top-cont {
  border: black solid 1pt;
  background-color: aqua;
  display: flex;
  justify-content: center;
  align-items: center;
 height: 50vh;
}
h1 {
  font-size: 35px;
  color: white;
}
h2 {
  text-align: center;
  color: white;
  background-color: black;
  margin: 0;
}
.bottom-cont {
  display: flex;
  background-color: black;
  height: 50vh;
}
.box-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}
.box-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;


}
.box-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;

}
p {
  color: white;
  background-color: black;
  text-align: center;
  margin: 0;
}
.box-blue {
  border: white solid 1pt;
  height: 20px;
  width: 120px;
 margin-bottom: 15px;
 background-color: blue;
}
.box-red {
  border: white solid 1pt;
  height: 20px;
  width: 120px;
 margin-bottom: 15px;
 background-color: red;
}
.box-green {
  border: white solid 1pt;
  height: 20px;
  width: 120px;
 margin-bottom: 15px;
 background-color: green;
}
@media (max-width: 576px) {
  .bottom-cont {
    flex-direction: column;
  }
}
