* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
  }

  a{
    color: gold;
  }

  header {
    width: 100%;
    max-width: 100vw;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .container {
    display: flex;
    gap: 5vw;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 600px;
  }

  .floating-item {
    width: 100px;
    height: 100px;
    background: rgba(132, 46, 244, 0.418);
    border-radius: 50%;
    border: solid gold 2px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    animation: floatUpDown 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: gold;
    font-weight: bold;
    user-select: none;
    cursor: default;
    flex-shrink: 0;
  }
  .floating-item:nth-child(1) {
    animation-delay: 0s;
  }
  .floating-item:nth-child(2) {
    animation-delay: 0.3s;
  }
  .floating-item:nth-child(3) {
    animation-delay: 0.6s;
  }
  .floating-item:nth-child(4) {
    animation-delay: 0.9s;
  }
  .floating-item:nth-child(5) {
    animation-delay: 1.2s;
  }

  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
      box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    }
    50% {
      transform: translateY(-30px);
      box-shadow: 0 25px 35px rgba(0,0,0,0.35);
    }
  }

  /* Responsividade */
  @media (max-width: 350px), (max-height: 600px) {
    header {
      height: 160px;
      padding: 6px 10px;
    }
    .container {
      gap: 110px;
      max-width: 350px;
    }
    .floating-item {
      width: 80px;
      height: 80px;
      font-size: 1rem;
    }
    .board{
      height: 100px;
      width: 100px;
    }
  }

.fundo1{
    width: 100%;
    position: absolute;
    z-index: -1;
}

.fundo2{
    width: 100%;
    height: 270vh;
    object-fit: cover;
    object-position: center;
}

.resultado{
    text-align: center;
}

.box{
    text-align: center;
    color: gold;
    padding: 10px;
    font-size: 20px;
    width: 90%;
    height: 30vh;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 5vh;
    margin-top: 5vh;
    background-color: #00000088;
    border: 1px solid gold;
    border-radius: 15px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
    padding: 5vh;
}

#result{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: gold;
    font-size: 30px;
}

.board{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 900px;
    height: 300px;
}

.footer{
    text-align: center;
    justify-content: center;
    align-content: center;
    color: gold;
    width: 100%;
    height: 10vh;
    background-color: rgb(132, 46, 244);
    margin-top: 40vh;
}