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

body{
    margin: 0;
    background-color: rgb(78, 3, 147);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
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;
    }
  }

section h1{
    margin-left: 20px;
    font-family: sans-serif;
    font-size: 30px;
    color: rgb(228, 207, 20);
}
section p{
    margin-left: 20px;
    font-family: sans-serif;
    font-size: 17px;
    color: yellow;
}
img{
    margin-top: 100px;
    object-fit: cover;
    width: 90%;
    border: solid 5px yellow ;
    border-radius: 20px;
}
article{
    column-count: 3;
    column-gap: 20px;
    margin-left: 2%;
}
.textimg {
    position: absolute;
    top: 90%;
    left: 45%;
    transform: translate(-50%, -50%);
    color: rgb(125, 51, 245);
    font-size: 2em;
    opacity: 0;
    transition: 0.3s ease;
    text-align: center;
    font-family: sans-serif;
    padding: 10px;
    border-radius: 5px;
    background-color: rgb(252, 222, 52);
}

.imgcont:hover .textimg {
    opacity: 1;
}
.imgcont {
    position: relative;
    display: inline-block;
    width: 90%;
}

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