body {
  /* overflow: hidden; */
  margin: 0px;
  padding: 0px;
  background-color: #ff8a00;
}

a {
  text-decoration: none;
  color: black;
}

.container {
  height: 100vh;
  width: 60%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0px auto;
  align-items: center;
  justify-content: center;
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  background-color: aliceblue;
  width: 300px;
  height: 260px !important;
  margin: 15px;
  border-radius: 20px;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.25);
  background-color: white;
  transition: ease-out 200ms;
}

.card:hover{
  box-shadow: none;
}

.card > h3 {
  font-family: "Nunito", sans-serif;
  display: block;
  margin: 0px;
  line-height: 50px;
  font-size: 25px;
}

.card > img {
  display: inline-block;
  height: 50px;
  width: 50px;
  margin: 0px 10px;
  margin-left: 0px;
}
