* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: #0d0d0d url('img/background.png') no-repeat center center / cover;
  color: white;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 50px;
  background: transparent;
}

.logo img {
  height: 100px;
}

.logobas {
  height: 20px;
}

nav a {
  margin: 0 20px;
  color: white;
  text-decoration: none;
  position: relative;
  font-size: 16px;
}

nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0%;
  background: #ffffff;
  transition: 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

nav a.highlight {
  color: #ff0040;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 50px;
  max-width: 800px;
}

.main h1 {
  font-size: 64px;
  line-height: 1.2;
}

.joueurs {
  margin: 20px 0;
  font-size: 18px;
}

.icon {
  height: 50px;
  margin-right: 10px;
}

.btn {
  padding: 0px 32px;
  background: #00000088;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.tag {
  background-color: #0d0d0d33;
  padding: 4px;
  border-radius: 8px;
}

.tag img {
  margin-right: 3px;
}

.btn:hover {
  background: #ff3366;
}

@media (max-width: 768px) {
  .main h1 {
    font-size: 42px;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-unity {
  background-color: #12121285;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  flex-wrap: wrap;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
}

.footer-left .logo {
  height: 50px;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.footer-center a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.separator {
  background-color: #ff0055;
  width: 5px;
  height: 15px;
  display: inline-block;
}

.footer-right a {
  color: white;
  margin-left: 15px;
  font-size: 20px;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #ff0055;
}
