body {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #dddddd;
  font-family: LTMuseum;
}

header {
  position: absolute;
  top: 0;
  left: 0;
}

#mainContainer {
  margin-top: 180px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  /* border: 1px solid #000000; */
}

.prestationsContainer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  /* border: 1px solid #000000; */
}

.prestationTitle {
  width: 80%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.prestationInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.prestationInfo a {
  font-size: 20px;
  color: #f70302;
  text-decoration: none;
}

.btnPrestation {
  display: block;
  position: relative;
  width: 200px;
  height: 200px;
  margin: 40px 0px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #aaaaaa;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 3px 3px 3px 0px #000000;
}

.bigWidth {
  width: 400px;
}

.btnPrestation div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btnPrestation > div:first-child {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
}

.btnPrestation div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (max-width: 1200px) {
  #mainContainer {
    width: 100%;
    margin-top: 140px;
  }

  .prestationTitle {
    font-size: 20px;
  }

  .btnPrestation {
    width: 180px;
    height: 180px;
    margin: 40px 0px;
    border-radius: 16px;
    font-size: 18px;
    box-shadow: 3px 3px 3px 0px #000000;
  }
  .bigWidth {
    width: 360px;
  }
}

@media screen and (max-width: 760px) {
  #mainContainer {
    width: 90%;
    margin-top: 100px;
  }
  .prestationTitle {
    font-size: 16px;
  }

  .btnPrestation {
    width: 140px;
    height: 140px;
    margin: 40px 0px;
    border-radius: 16px;
    font-size: 14px;
    box-shadow: 3px 3px 3px 0px #000000;
  }
  .bigWidth {
    width: 280px;
  }
}

@media screen and (max-width: 480px) {
  #mainContainer {
    margin-top: 100px;
    width: 90%;
  }
  .prestation {
    margin: 30px 0px;
  }
  .btnPrestation {
    width: 140px;
    height: 140px;
    margin: 20px 40px;
    border-radius: 16px;
    font-size: 14px;
    box-shadow: 3px 3px 3px 0px #000000;
  }
  .bigWidth {
    width: 140px;
  }
}
