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;
}

main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-top: 180px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  width: 1002px;
  /* border: 1px solid #000000; */
}

ul,
p {
  margin: 0;
}

#title {
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  /* border: 1px solid #000000; */
}

.prestationContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 20px 0px;
  font-size: 18px;
  font-weight: bold;
  /* border: 1px solid #000000; */
}

.prestationTitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 10px 0px;
  font-size: 20px;
  text-decoration: underline;
  color: #f70302;
  /* background-color: aqua; */
}

.prestationInfo {
  width: 100%;
  padding: 10px 40px;
  box-sizing: border-box;
  /* background-color: coral; */
}

#btnGoPrestation {
  padding: 4px 14px;
  background-color: #f70203;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 2px 2px 2px 0px #000000;
  cursor: pointer;
}

#btnGoPrestation:active {
  translate: 2px 2px;
  box-shadow: none;
}

@media screen and (max-width: 1200px) {
  main {
    width: 720px;
    margin-top: 140px;
  }
  #title {
    width: 88%;
    font-size: 22px;
  }
  .prestationTitle {
    margin: 10px 0px;
    font-size: 18px;
  }
  .prestationContainer {
    margin: 16px 0px;
    font-size: 16px;
  }
  #btnGoPrestation {
    padding: 3px 14px;
    font-size: 14px;
    border-radius: 6px;
  }
}

@media screen and (max-width: 760px) {
  main {
    width: 440px;
    margin-top: 100px;
  }
  #title {
    width: 80%;
    font-size: 20px;
  }
  .prestationTitle {
    margin: 10px 0px;
    font-size: 16px;
  }
  .prestationContainer {
    margin: 16px 0px;
    font-size: 14px;
  }
  #btnGoPrestation {
    padding: 3px 14px;
    font-size: 12px;
    border-radius: 6px;
  }
}

@media screen and (max-width: 480px) {
  main {
    width: 94%;
    margin-top: 120px;
  }
  #title {
    width: 100%;
    font-size: 18px;
  }
  .prestationTitle {
    margin: 10px 0px;
    font-size: 16px;
  }
  .prestationContainer {
    margin: 16px 0px;
    font-size: 14px;
  }
  #btnGoPrestation {
    padding: 3px 14px;
    font-size: 12px;
    border-radius: 6px;
  }
}
