

body {
  font-family: 'XBRoyaBold',"Dosis",sans-serif;
  line-height: unset !important;
}

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