body {
    background-color: rgb(37, 10, 10);
}

.main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.main h2 {
    font-size: 2.5em;
    color: rgb(245, 147, 147);
    margin-bottom: 1em;
}

.main p {
    z-index: 99;
    color: white;
    padding: .5em 1em;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.top {
    padding-top: 10em;
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .medal-group {
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: white;
  }
  
  .medal-header {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .members {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  
  .members span {
    background: #f5f5f5;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s;
  }
  
  .members span:hover {
    background: #e0e0e0;
  }
  
  /* Medal Colors */
  .gold {
    border-left: 5px solid gold;
  }
  .silver {
    border-left: 5px solid silver;
  }
  .bronze {
    border-left: 5px solid peru;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .members {
      flex-direction: column;
      align-items: center;
    }
  
    .members span {
      width: 100%;
      text-align: center;
    }
  }
  