@font-face {
  font-family: "minecraft";
  src: url(/src/minecrafter.ttf);
}
* {
  margin: 0;
  padding: 0;
  font-family: "minecraft", serif;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
body {
  background-image: url(/src/background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}
html {
  height: 100%;
}
header {
  background: #000;
  color: #fff;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}
header .logo {
  height: 70px;
}
header nav ul {
  display: flex;
}
header nav ul li a {
  display: inline-block;
  color: #fff;
  padding: 5px 0;
  margin: 0 10px;
  border: 3px solid transparent;
  text-transform: uppercase;
  transition: 0.2s;
}
header nav ul li a:hover,
header nav ul li a.active {
  border-bottom-color: green;
}
.hamburger {
  cursor: pointer;
  display: none;
}
.hamburger div {
  width: 30px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
}
@media only screen and (max-width: 900px) {
  header {
      padding: 0 30px;
  }
}
@media only screen and (max-width: 700px) {
  .hamburger {
      display: block;
  }
  header nav {
      position: absolute;
      width: 100%;
      left: -100%;
      top: 70px;
      width: 100%;
      background: #000;
      padding: 30px;
      transition: 0.3s;
  }
  header #nav_check:checked ~ nav {
      left: 0;
  }
  header nav ul {
      display: block;
  }
  header nav ul li a {
      margin: 5px 0;
  }
  .corp {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

main {
  flex: 1;
}

.entete {
  margin: 45px;
  display: flex;
  justify-content: center;
}

.titre1 {
  font-size: 60px;
}

.notfound {
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.corp {
  display: flex;
  align-items: center;
}

footer {
  background: #000;
  padding: 50px;
}

footer p {
  color: #fff;
  text-align: center;
}