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

/* Applique la couleur de fond pour tout le document */
body {
  background-color: rgb(251, 247, 234);
  font-family: 'Roboto', sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.logo img {
  max-width: 40%;
  max-height: auto;
  vertical-align: middle;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.actions ul li {
  list-style: none;
  flex: 0 0 100%;
  margin: 10px 0;
  text-align: center;
}

.actions ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 25px;
  font-weight: bold;
  background-color: #b1221c;
  transition: 0.7s;
  width: 300px;
  height: 80px;
  border-radius: 10px;
  margin-top: 20px;
}

.actions ul li a:hover {
  background-color: #636463;
  transition: 0.7s;
  color: white;
}

.horaires {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.horaires-fr p {
  font-size: 3rem;
  font-weight: 800;
  color: #636463;
}

.horaires-en {
  color: #b1221c;
}

.horaires-en p {
  font-weight: 100;
  margin-top: 0.5rem;
}

.details {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.details img {
  max-width: 50%;
  max-height: auto;
  vertical-align: middle;
}

.footer {
  background-color: #636463;
  color: rgb(251, 247, 234);
  font-size: 0.5rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/************************  RESPONSIVE  ******************************/
@media only screen and (pointer: coarse), (max-width: 768px) {
  
  .logo img {
    max-width: 80%;
  }

  .actions ul li {
    flex: 0 0 auto;
    margin: 0 10px;
    text-align: left;
  }

  .horaires-fr p {
    font-size: 1.5rem;
  }

  .horaires-en p {
    font-size: 0.8rem;
  }

}
