* {
    margin: 0%;
    padding: 0%;
    font-family: 'Ubuntu', sans-serif;
  }
  
  body {
    color: aliceblue;
    background-color: black;
    text-align: center;
  }
  
  h1, h2 {
    margin: 20px 0px 5px 0px;
  }
  
  a {
    color: aliceblue;
    text-decoration: none;
    outline: none;
    margin: 5px;
    transition: all 0.5s;
  }
  
  a:hover {
    margin: 8px;
    color: green;
  }
  
  #menu {
    position: sticky;
    left: 0px;
    top: 0px;
    width: 100%;
    background-color: rgb(7, 7, 7);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #menu a {
    margin: 20px;
  }
  
  footer {
    padding: 0px 0px 15px 0px;
    background-color: #111;
  }
  
  
  #about {
    background-color: black;
    margin: 0px;
  }
  
  #piratas {
    background: linear-gradient(#000 0%, rgb(0, 135, 189) 90%);
    min-height: 500px;
    margin: 0px;
  }
  
  #about {padding-top: 20px;}
  #contact {padding-top: 15px; margin-top: 0px; clear: both;}
  #games {padding-top: 50px; margin-top: 25px; margin-bottom: 25px;}
  #team {padding-top: 50px; margin-top: 25px; margin-bottom: 25px;}
  
  #games h2 {
    margin-top: 60px;
    margin-bottom: 20px;
  }
  
  #piratas {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #piratas p {
    margin-top: 30px;
    width: 70%;
  }
  
  #piratas h2 {
    margin-top: 50px;
  }


  /* INDEX - TEAM */
  #team {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .member {
    width: 200px;
    height: 200px;
    margin: 10px;
    padding: 10px;
    background-color: blue;
    border-radius: 10px;
    transition: all 0.3s;
  }

  .member:hover {
    background-color: black;
  }






  /* SPACE */

  #space-description {
    float: left;
    width: 70%;
    height: 1250px;
    background: linear-gradient(#000 0%, rgb(42, 0, 82) 90%);
  }

  #space-rankings {
    background: linear-gradient(#000 0%, rgb(42, 0, 82) 90%);
    float: right;
    width: 30%;
    min-height: 100vh;
    height: 1250px;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: center;
  }

  .ranking-box {
    background-color: #000;
    width: 200px;
    margin: 20px 0px 20px 0px;
    border-radius: 5px;
    padding: 20px;
    text-align: left;
  }