*{
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    
}

body{
    margin: 0;
  
    background: linear-gradient(to right, rgb(91, 0, 109), rgb(131, 0, 143));}

    
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;
    }
  }

.texto{
    color: rgb(247, 250, 252);
    margin-left: 70px;
    margin-right: 580px;
    margin-top: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: large;
    text-align: justify;
}

.img{
    width: 450px;
    height: 300px;
    border: 2px solid rgb(222, 246, 7);
    border-radius: 10px;
    position: absolute;
    margin-left: 580px;
    margin-top: -310px;
}

.texto2{
    color: rgb(247, 250, 252);
    margin-left: 580px;
    margin-right: 50px;
    margin-top: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: large;
    margin-bottom: 100px;
    text-align: justify;
}
.img2{
    width: 500px;
    height: 300px;
    border: 2px solid rgb(222, 246, 7);
    border-radius: 10px;
    position: absolute;
    margin-left: 60px;
    margin-top: 230px;
    
}

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