* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.main-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: linear-gradient(180deg, #144a62 46.35%, #0d3046 91.15%);
}

.container {
  text-align: center;
}

.container p {
  color: white;
  font-size: 1.6rem;
  font-weight: 500;
}

.container button {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.5em 4em;
  margin-top: 2rem;
  border-radius: 0.5em;
  background: rgba(247, 52, 153, 0.47);
  color: white;
  letter-spacing: 2px;
  font-size: 1.2rem;
  cursor: pointer;
}


.logo-container {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
  /* margin-bottom: 2.5rem; */
}

.club-name {
  font-size: 3.5rem;
  color: white;
  font-weight: 600;
  letter-spacing: 2px;
}

.talent-images {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
.talent-image {
  max-width: 600px;
}

.footer {
  text-align: center;
  color: #bed643;
  margin-top: auto;
  padding: 1rem;
  font-weight: 500;
}
