body {
  background-color: rgb(238 245 255);
  margin: 0%;
  height: 100vh;
}
.main {
  height: 100vh;
  display: flex;
  justify-content: center;
}
.box {
  height: 300px;
  width: 600px;
  background: linear-gradient(-225deg, #ff057c 0%, #8d0b93 50%, #321575 100%);
  border-radius: 6px;
  align-self: center;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.box h1 {
  text-align: center;
  color: white;
  font-family: sans-serif;
}
.a-text {
  display: flex;
  align-self: center;
  margin-top: 15%;
}
.a-text a {
  text-decoration: none;
  padding: 0px 15px;
  color: white;
  font-size: 20px;
  margin: auto;
}
a:hover {
  background-color: rgb(102 105 151);
  border-radius: 5px;
}
.box:hover {
  padding: 15px;
  transition: 0.5s;
}
.m {
  margin-top: 5%;
}
