body {
    background-color: black;
  }
  
  a {
      color: inherit; /* this will make the text color to be the same as its parent */
      text-decoration: none; /* this will remove the underline from the links */
  }
  
  #logo {
    width: 200px;
    height: 150px;
    border: 20px solid white;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  #logo h1 {
    font-size: 3em;
    color: white;
    margin-top: 47px;
    font-family: 'Roboto', sans-serif;
  }
  
  #subtext {
      position: absolute;
      color: white;
      top: 50%;
      left: 50%;
      transform: translate(200%, 1em); /* move it 10% from the center point */
      font-size: 1em;
      font-family: 'Roboto', sans-serif;
  }
  
  #links1 {
      position: absolute;
      width: 130px;
      color: white;
      bottom: 0px;
      transform: translate(90px);
      font-size: 1em;
      font-family: 'Roboto', sans-serif;
      border: 5px solid black;
      background-color: black;
  }

  #links2 {
    position: absolute;
    width: 130px;
    color: white;
    bottom: -25px;
    transform: translate(90px);
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    border: 5px solid black;
    background-color: black;
}
