.title {
  color: #29245c;
  font-family: Oswald;
  text-align: center;
  font-size: 3.5em;
  font-weight: bolder;
  text-decoration: underline;
}

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

.container {
  display: flex;
  flex-wrap: wrap;
  margin: 5%;
  justify-content: space-evenly;
}

body {
  background: #8fbccf;
  font-family: "roboto", sans-serif;
  justify-content: center;
  align-items: center;
}

.card {
  width: 320px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #fff;
  position: relative;
  background-color: #ffba52;
  margin-right: 2.5%;
  margin-left: 2.5%;
  margin-top: 5%;
}

.card-body {
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  color: #fff;
  position: absolute;
  background: #1f3d4738;
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 1s;
}

.card:hover .card-body {
  right: 0;
}

.card-title {
  text-transform: uppercase;
  font-size: 5Opx;
  font-weight: 500;
}

.card-sub-title {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 300;
}

.card-info {
  font-size: 16px;
  line-height: 25px;
  margin: 4Opx 0;
  font-weight: 400;
}

.card-button {
  color: #e0d9d9;
  background: #ea606e;
  width: 120px;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: capitalize;
  border: none;
  outline: none;
  font-weight: 600;
  cursor: pointer;
}

a {
  color: #e0d9d9;
}

h4 {
  font-family: kanit;
  font-size: 1.3em;
  text-align: center;
  text-shadow: 2px 2px 0px #81818183;
  margin-top: 5%;
}

.desc {
  margin: 10%;
  text-justify: auto;
}

#arrow {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: url("a.png") no-repeat center center;
  background-size: cover;
  cursor: pointer;
  z-index: 9999;
}
