body {
  background-image: url(images/mountains_peaks_clouds_1212003_1920x1080.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.title {
  padding: 100px;
  height: 500px;
}
.title h1 {
  font-size: 500%;
}
.container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}
.box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* padding: 20px; */
  box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.3);
  background-color: rgba(25, 194, 168, 0.6);
  width: 250px;
  border-radius: 10px;
  margin-left: 50px;
  margin-right: 50px;
  transform: scale(1);
  transition: 0.2s;
}
.box div {
  padding: 20px;
  padding-top: 0;
}
.box div h3 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 20px;
}
.box div p {
  line-height: 30px;
}
.box:hover {
  transform: scale(1.05);
  transition: 0.2s;
}
.img {
  border-radius: 5px;
  width: 250px;
  height: 250px;
}

