*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  body {
    text-align: center;
    background-color: black;
  }

  main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  h1 {
    color: white;
    padding: 20px;
    font-size: 50px;
    margin-bottom: 15px;
    margin-top: 10px;
    font-family: 'Press Start 2P';
  }
  a {
    background: #d8cdcd;
    border: none;
    border-radius: 20px;
    color: black;
    font-family: 'Press Start 2P';
    font-size: 1em;
    line-height: 30px;
    display: block;
    width: 15%;
    margin: 25px;
    -webkit-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    cursor: pointer;
    text-decoration: none;
  }
  a:hover{
    background-color: black;
    color: white;
  }
