html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  background-color: #f2f2f2;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  /* padding: 30px; */
  overflow-x: hidden;
  background-color: #000000;
  max-width: 100%;
}

a {
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  /* font-weight: bold; */
  flex: 1;
}

.main-section {
  height: calc(100vh - 60px);
}

@media (max-width: 640px) {
  .main-section {
    max-height: 100%;
  }

  .horizon-logo {
    max-width: 100%;
  }

  .logo-subtitle {
    font-size: 1.3rem;
  }

  .button-group {
    display: none !important;
  }

  .header {
    justify-content: center !important;
  }

  .favicon {
    margin: 0 !important;
  }

  .who-content {
    max-width: 100% !important;
  }

  .games-section {
    height: 250vh !important;
  }

  .who-names {
    flex-direction: column;
    gap: 0px !important;
  }
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.favicon {
  width: 14rem;
  margin-top: 1rem;
  margin-left: 4rem;
  display: flex;
  align-self: center;
}

.background {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: -1;
  object-fit: cover;
}

.header {
  top: 10px;
  position: sticky;
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.button-group {
  display: flex;
  justify-content: space-between;
  flex-shrink: 1;
  gap: 4rem;
}

.container {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  color: white;
  font-weight: bold;
  align-items: center;
}

.projects-button {
  margin-top: 50px;
  padding: 12px 40px;
  border-radius: 25px;
  background-color: white;
  font-size: 1.25rem;
  color: #ff9f00;
  border: none;
  cursor: pointer;
}

.games-section {
  padding: 50px 0;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.card-group {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px; */
}

.card {
  /* flex: 1 0 200px; */
  /* Adjust the width of the cards as needed */
}

.card>a {
  width: 100%;
}

.card img {
  width: 100%;
}

.who-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 40px;
}

.who-names {
  display: flex;
  border-radius: 30px;
  justify-content: center;
  align-items: baseline;
  background-color: #ffffff55;
  gap: 60px;
  padding: 80px;
  padding-bottom: 30px;
}

.who-image {
  height: 150px;
  width: 150px;
  border-radius: 100%;
  object-fit: cover;
}

.team-member-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 0px;
}

.team-member-role {
  font-size: 1.2rem;
  color: white;
  font-weight: 400;
  margin-top: 5px;
}

.who-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  /* border-bottom: 1px solid white; */
  /* border: 1px solid white; */
  /* padding: 0px 25px 3px; */
  /* border-radius: 20px; */
}

.team-member-name {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  color: white;
  text-align: center;
  margin-top: 10px;
}

.socials-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  padding: 15px;
  border: none;
  cursor: pointer;
  margin: 0 auto;
}

.socials-button-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff55;
  border-radius: 30px;
  z-index: -1;
}

.who-content {
  color: white;
  max-width: 50%;
  text-align: center;
  display: flex;
  gap: 40px;
}

.who-names>p {
  color: white;
  text-align: center;
}