@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

#destinationSheetContent {
    min-height: 75vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: url('https://api.rezopouce.fr/resources/img/destinationSheet/panneau_destination.svg') no-repeat;
    background-position: center center;
    background-size: contain;
}

p#destinationSheetText {
    width: 80%;
    
    text-align: center;
    text-transform: uppercase;

    font-family: 'Poppins';
    font-weight: bold;
    color: black;
}

@media screen and (max-width: 1200px) {
  p#destinationSheetText {
    font-size: 2.5rem; /* Taille de caractère pour mobile */
  }
}

@media screen and (min-width: 1200px) {
  p#destinationSheetText {
    font-size: 4rem; /* Taille de caractère pour desktop */
  }
}

#destinationSheetBtnPrint {
  background-color: #00d28c;
  border-color: #00d28c;
}