/* 
  Auteur      : Maxime Bernet
  Description : style d'accueil de mon projet personnel du module 293 (minecraft)
  Date        : 15.01.2026
*/

body {
  background-image: url(../image/deepslateBackground.webp);
  margin: 0px;
}

.bouton {
  display: flex;
  padding-bottom: 150px;
  padding-top: 290px;
  padding-left: 80px;
  padding-right: 80px;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-evenly;
}

h2 {
  text-align: center;
  color: aliceblue;
  font-family: Arial, Helvetica, sans-serif;
}
img{
  width: 100%;
}

@media screen and (max-width: 768px) {

  body {
    background-size: cover;
    background-position: center;
  }

  .bouton {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 40px 20px;
  }
  img{
    width: 100%;
  }
}
