@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald&display=swap');

body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  background-color: #0a0a0a;
  color: #e0e0e0;
  text-align: center;
}

#nav {
  background-color: #111;
  padding: 15px;
  border-bottom: 3px solid #cc0000;
}

#nav a {
  color: #e0e0e0;
  margin: 0 15px;
  text-transform: uppercase;
}

#nav a:hover {
  color: #cc0000;
}

#haut {
  padding: 40px;
  background: linear-gradient(45deg, #000, #1a1a1a);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 50px;
  color: #cc0000;
  letter-spacing: 4px;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: #cc0000;
}

.bloc {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background-color: #111;
  border-left: 5px solid #cc0000;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.carte {
  background-color: #1a1a1a;
  border: 2px solid #cc0000;
  width: 250px;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s;
}

.carte img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.carte h3 {
  padding: 15px;
  font-family: 'Bebas Neue', sans-serif;
}

.carte:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #cc0000;
}

#bas {
  margin-top: 40px;
  padding: 20px;
  border-top: 3px solid #cc0000;
  color: #cc0000;
}