html {
  height: 100%;

  /* max-height: 600px; */
  width: 1000px;
  

}

@keyframes para {
  100% {
    background-position:
      -5000px 20%,
      -800px 95%,
      500px 50%,
      1000px 100%,
      400px 0;
  }
}

body {
  display: flex;
  box-sizing: border-box;
  margin: 0%;
  padding: 0%;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

div {
  background: linear-gradient(135deg, #f2f2f2 0%, #edf6f8 100%);
  padding: 2rem;
  max-width: 50%;
  border-radius: 25px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  -webkit-box-shadow: -10px 0 13px -7px #000, 10px 0 13px -7px #000, 5px 5px 15px 2px rgba(0, 0, 0, 0.79);
  box-shadow: -10px 0 13px -7px #000, 10px 0 13px -7px #000, 5px 5px 15px 2px rgba(0, 0, 0, 0.79);
}

div h1 {
  font-family: inherit;
  margin: 0%;
}

div p {
  font-family: inherit;
}

ol {
  font-family: inherit;
}

a {
    box-shadow: 0 10px 14px -7px #000;
    background: linear-gradient(to bottom, #ee0000 5%, #e62129 100%);
    background-color: #000;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    color: #fff;
    font-family: inherit;
    font-size: 20px;
    font-weight: bold;
    padding: 13px 32px;
    text-decoration: none;
    text-shadow: 0 1px 0 #000000;
}

a:hover {
  background: #000000;
  background-color: #408c99;
}

a:active {
  position: relative;
  top: 1px;
}
