:root {
  --white: #ffffff;
  --blanccossé: #e0e0e0;
  --cblack: #0c0c0c;
  --ablack: #1a1a1a;
  --brown: #2e2e2e;
  --lightblue: #60c6ff;
  --darkblue: #3da9fc;
  --black: #000000;
  --orange: #fcb43a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ablack);
}

h2,
h3 {
  font-weight: normal;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

a:hover {
  color: var(--darkblue);
}

header {
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.nav-container {
  background-color: var(--black);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .Logo {
  height: 50px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: var(--white);
  font-weight: bold;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

section {
  margin-bottom: 3rem;
}

.game-links {
  display: flex;
  gap: 2rem;
}

.game-links div {
  flex: 1;
  border: 1px dashed #999;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
}

.game-links div:hover {
  background-color: #f0f0f0;
}

.partenaire-contact {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
}

.bloc-groupe {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 45%;
}

.bloc-groupe h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.partenaire,
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.partenaire img {
  height: 50px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

.contact i,
.footer-container i {
  font-size: 50px;
  color: var(--black);
  vertical-align: middle;
  line-height: 50px;
}

img:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
}

i:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
  color: var(--darkblue);
}

.qcm_container {
  display: flex;
  justify-content: space-between;
  margin-top: 30%;


}
.qcm_container .container a{
  border: 1px solid black;
  padding: 10px 15px;
  border-radius: 5px;
}

footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #ccc;
  background-color: var(--black);
  color: var(--white);
  margin-top: auto;
}

footer a {
  color: var(--white);
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .game-links {
    flex-direction: column;
  }

  .partenaire-contact {
    flex-direction: column;
    gap: 50px;
  }

  .bloc-groupe {
    width: 100%;
  }

  .partenaire img {
    height: 70px;
  }

  .contact i,
  .footer-container i {
    font-size: 70px;
  }
}
