* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cont {
  display: flex;
  flex-flow: wrap row;
  align-items: center;
  margin: auto;
  justify-content: center;
  border-radius: 9px;
  width: 80rem;
  margin-top: 5rem;
  box-shadow: rgb(95, 95, 97) 0rem 0rem 1rem;
}
.card-one {
  height: 30rem;
  width: 24rem;
  /* border: 2px solid blue; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: hsl(31, 77%, 52%);
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
}
.card-one button {
  font-family: "Lexend Deca";
  font-size: large;
  color: hsl(31, 77%, 52%);
}

.card-two {
  height: 30rem;
  width: 24rem;
  /* border: 2px solid blue; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: hsl(184, 100%, 22%);
}
.card-two button {
  font-family: "Lexend Deca";
  font-size: large;
  color: hsl(184, 100%, 22%);
}

.card-three {
  height: 30rem;
  width: 24rem;
  /* border: 2px solid blue; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: hsl(179, 100%, 13%);
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
}
.card-three button {
  font-family: "Lexend Deca";
  font-size: large;
  color: hsl(179, 100%, 13%);
}

.card-cont {
  height: 25rem;
  width: 20rem;
  display: flex;
  flex-flow: wrap column;
  justify-content: space-around;
  padding: 15px;
}

.card-cont button {
  width: 10rem;
  height: 3rem;
  border-radius: 25px;
  border: none;
}
.card-cont img {
  height: 3rem;
  width: 5rem;
}
.card-cont h2 {
  color: white;
  font-size: 2rem;
  font-family: "Big Shoulders Display";
}
p {
  font-family: "Lexend Deca";
}

.card-cont p {
  color: white;
}
@media (max-width: 500px) {
  .cont {
    /* border: 2px solid green; */
    flex-direction: column;
    width: 24.2rem;
    height: 90.2rem;
    margin-top: 0.5rem;
  }
  .card-one {
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    border-bottom-left-radius: 0;
  }
  .card-three {
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    border-top-right-radius: 0;
  }
}
