@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');
*{
  color: white;
}

a{
    text-decoration: none;
    color: rgb(255, 147, 170);
}

body{
    margin: 0px;
    padding: 0px;
    background-color: black;
    font-family: 'M PLUS Rounded 1c', sans-serif;
  }

  header{
    position: fixed;
    left: 0px;
    width: 100%;
    text-align: right;
  }
  
  header img{
    margin: 8px;
    width: 50px;
  }

  .container{
    margin: auto;
    padding-top: 66px;
    width: 80%;
    text-align: center;
  }

.buttoncontainer{
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  display: flex;
  flex-wrap: wrap;
}

.buttoncontainer2{
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

  .button{
    text-align: center;
    justify-content: center;
    margin-top: 24px;
    padding-bottom: 24px;
    width: 50%;
    transition: all .25s;
}

.button:hover{
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  transition: all .25s;
}

  .button a{
    display: block;
    padding: 16px 10px;
    text-align: center;
    width: 300px;
    border-radius: 50px;
    border: 2px solid rgb(255, 147, 170);
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    transition: all .25s;
  }

  .button a:hover{
    background-color: rgb(255, 147, 170);
    color: white;
    transition: all .25s;
  }

  h1{
    text-align: center;
    text-shadow: 0 0 20px rgb(255, 221, 102);
    margin-bottom: 32px;
    color: rgb(255, 147, 170) !important;
  }

  h3{
    padding-top: 8px;
    line-height: 2em;
  }

  h3 a{
    text-decoration: underline 2px rgb(255, 147, 170);
    text-shadow: 0 0 20px rgb(255, 221, 102);
    display: inline-block;
  }
  @media (max-width: 1100px){
    .buttoncontainer,.buttoncontainer2{
      display: initial;
    }

    .button{
      margin-left: auto;
      margin-right: auto;
      width: 50%;
      border-top: 2px solid rgb(255, 221, 102);
    }

    .button:hover{
      background-color: initial;
      border-radius: initial;
    }
  }

  @media (max-width: 780px){
    h1 span{
      display: inline-block;
    }
    .button{
      width: 80%;
    }
  }
  @media (max-width: 480px){
    h1 span{
      font-size: 25px;
    }
    .button{
      width: 95%;
    }
  }