* {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }


  body {
    margin: 0;
    overflow: hidden;
  }

  
  h1{
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 900;
    font-style: normal;   
  }

  .container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .titulo {
    text-align: center;
    font-size: 35px;
    color: #ffffff;
    text-shadow: 1px 1px  #696868;

    & h5{
      font-size: 20px;
      font-family: sans-serif;
    }
  }

  .linguagem {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
  }

  .linguagem button {
    background: none;
    color: #ffffff;
    border: 2px solid rgb(255, 255, 255);
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
  }

  .linguagem button:hover {
    background: #ffffff;
    color: rgb(0, 0, 0);
  }

  .container .titulo .button a {
    text-decoration: none;
  }

  .container .titulo .button button {
    background: none;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .container .titulo .button button:hover {
    background-color: #000000;
    color: white;
  }

  @media (max-width: 500px) {
    .titulo {
      font-size: 14px;
    }

    .linguagem {
      right: 10px;
      top: 10px;
    }
    
  }