body {
  /* background: linear-gradient(85deg, rgb(210, 128, 147), rgb(60, 141, 188)); */
  background: linear-gradient(135deg, #0e3868, #e34947);

  margin: 0;
  padding: 0;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.box {
  padding: 10px;
  background-color: rgb(11, 100, 70);

  width: 400px;
  height: 600px;
  border-radius: 50px;
  box-shadow: 10px 10px 25px rgb(6, 50, 9);
}
.box:hover {
  background-color: rgb(44, 146, 85);
  transition: 0.5s ease;
}

p {
  margin-top: 50px;
  color: rgb(255, 252, 252);
  font-family: sans-serif;
  line-height: 2;
  text-align: left;
}
button {
  width: 200px;
  height: 50px;
  margin-left: 100px;
  margin-top: 10px;
  border-radius: 10px;
  background-color: #0b44d4;
  border: none;
}
button:hover {
  background-color: #2a7cff;
  /* transform:scale(1.05); */
}

a {
  color: #f80606;
  text-decoration: none;
  font-size:15px
}
