body{
    margin: 0;
    padding: 0;
    background: url(bg.png) repeat;
  }
  .box{
    /* Propriedades adicionadas pelo Joao em 14.04.2022 */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    width: 450px;
    background: #6867678a;
    padding: 40px;
    margin: auto;
    margin-top: 5%;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;

  }
  .box-img{
    border-radius: 50%;
    width: 200px;
    height: 200px;
  }
  .box h1{
    font-size: 40px;
    letter-spacing: 4px;
    font-weight: 50;
  }
  .box h5{
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 100;
  }
  ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
  .box li{
    margin: 6px;
    list-style: none;
  }
  .box li a{
    color: white;
    text-decoration: none;
    font-size: 60px;
    transition: all ease-in-out 250ms;
  }
  .box li a:hover{
    color: #b9b9b9;
  }
/* Codigo adicionado pelo Joao em 14.04.2022 */
  @media screen and (max-width: 1000px) {
    .box{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 75%;
      margin-top: 0;
    }
    .box-img{
      width: 300px;
      height: 300px;
    }
    .box h1{
      font-size: 60px;
      letter-spacing: 2px;
    }
    .box h5{
      margin-top: -2px;
      font-size: 32px;
      letter-spacing: 2px;
    }
  }