* {
    box-sizing: border-box;
    color: #202020;
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    
    -webkit-print-color-adjust: exact !important;   /* Chrome, Safari 6 – 15.3, Edge */
    color-adjust: exact !important;                 /* Firefox 48 – 96 */
    print-color-adjust: exact !important;           /* Firefox 97+, Safari 15.4+ */
}

main {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


section.affiche {
    width: 100%;
    height: 100vh;
    break-after: page;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0 60px;
}

section.affiche div.remise {
    align-self: flex-start;
}

section.affiche div.remise div.box {
    background-color: #d40029;
    color: #fff;
    padding: 12px 8px;
    border-radius: 15px 15px 0 0;
    /* corner-bottom-shape: bevel; */
    position: relative;
}

section.affiche div.remise * {
    color: #fff;
}

section.affiche div.remise h3 {
    font-size: 2.5em;
    text-align: center;
}

section.affiche div.remise h3 + p {
    font-size: 1.5em;
    text-align: center;
}

.section.affiche div.remise div.box:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  width: 0;
  background-color: #d40029;
  border-top: 20px solid black;
  border-left: 20px solid #d40029;
  border-bottom: 20px solid #d40029;
}


section.affiche div.title {
    padding: 20px 0;
}

section.affiche div.title h2 {
    font-size: 2em;
    text-align: center;
}

section.affiche div.title h2 + p {
    font-size: 1.5em;
    color: #404040;
    text-align: center;
}

section.affiche div.price {
    display: flex;
    flex-direction: row;
}

section.affiche div.price h4 {
    font-size: 3em;
    color: #d40029;
    text-align: center;
    margin-right: 30px;
    text-decoration: line-through;
}

section.affiche div.price h3 {
    font-size: 10em;
    color: #d40029;
    text-align: center;
    margin: 20px;
}

section.affiche div.price h3 span {
    font-size: .5em;
    color: #d40029;
    text-align: center;
}

section.affiche div.details {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.5em;
}

section.affiche div.details p.date {
    font-weight: bold;
    font-size: 1.5em;
}