body {
    margin: 0;
    box-sizing: border-box;
    text-align: center;
  }

  

  h1 {
    font-size: 10 rem;
    color: #fff;
    font-weight: 200;
  }

  h3 {
    font-size: 80 rem;
    color: #fff;
    font-weight: 200;
  }

  h2 {
    font-size: 2rem;
    color: rgb(208, 235, 132);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  p {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-style:italic;
  }

  a {
    padding: 15px 20px;
    background: #52caee;
    font-size: 1rem;
    text-decoration: none;
    color: #333333;
    border-radius: .25rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.808)
  }
  .button
  {
      position: relative;
      margin: auto;
      text-align: center;
      text-align: center;
      width: 300px;
      padding: 20px;
      font-size: 25px;
      color: #15f4ee;
      font-family: poppins;
      font-weight: 200;
      border: 5px solid #15f4ee;
      text-transform: uppercase;
      letter-spacing: 15px;
      cursor: pointer;
      border-radius: 100px;
      transition: 1.5s;
  }
  .button:hover
  {
      box-shadow: 0 5px 50px 0 #15f4ee inset, 0 5px 50px 0 #15f4ee,
                  0 5px 50px 0 #15f4ee inset, 0 5px 50px 0 #15f4ee;
      text-shadow: 0 0 5px #15f4ee, 0 0 5px #15f4ee;
  }