
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");


#body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100vh;

}

#body .container {
  display: flex;
  float: left;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px 0;
}

#body .container .Acard {
  position: relative;
  min-width: 320px;
  height: 440px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 30px;
  transition: 0.5s;
}

#body .container .Acard:nth-child(1) .box .content a {
  background: #00145F;
}

#body .container .Acard:nth-child(2) .box .content a {
  background: #00145F;
}

#body .container .Acard:nth-child(3) .box .content a {
  background: #00145F;
}

#body .container .Acard:nth-child(4) .box .content a {
  background: #00145F;
}


#body .container .Acard .box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(to right, #033E66 20%, #b53f56 100%);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

#body .container .Acard .box:hover {
  transform: translateY(-50px);
}

#body .container .Acard .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

#body .container .Acard .box .content {
  padding: 20px;
  text-align: center;
}

#Title {
 margin-top:9px;
  top: 0px;
  right: 106px;

}

#body .container .Acard .box .content h3 {
  font-size: 1.8rem;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}

#body .container .Acard .box .content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}

#body .container .Acard .box .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: #00145F;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
#body .container .Acard .box .content a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}
