/* Variables */
/* Mixins */
body {
  font-family: "Dosis", sans-serif;
}

.container2 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  height: 97vh;
}
.container2 .box2 {
  width: 250px;
  height: 250px;
  border-radius: 10px;
  background-color: white;
  margin: 20px;
  transition: 0.3s all ease-in-out;
  position: relative;
  box2-shadow: 0px 0px 15px background;
  /* Link */
}
.container2 .box2 .boxContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}
.container2 .box2 .boxContent .icon {
  color: #8293ff;
  font-size: 48px;
  padding: 15px;
}
.container2 .box2 .boxContent .title2 {
  font-size: 18px;
  color: #8293ff;
  font-weight: bold;
  padding: 10px;
}
.container2 .box2 .boxContent .desc2 {
  color: #8293ff;
  font-size: 12px;
  height: 20%;
}
.container2 .box2 a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.container2 .box2:hover {
  background: linear-gradient(130deg, #503bff 0%, #8293ff 100%);
  box2-shadow: none;
}
.container2 .box2:hover .icon,
.container2 .box2:hover .title2,
.container2 .box2:hover .desc2 {
  color: white;
  transition: 0.3s all ease-in-out;
}