.playpen {
    font-family: "Playpen Sans";
    font-weight: 800;
}

.playpenS {
    font-family: "Playpen Sans";
    font-weight: 500;
    font-size: 0.8em;
    text-decoration: underline;

}

.bloqueSpam {
    display: none;
}

body {
    width: 100%;
    margin: 0;
    background-color: #D9E4FF;
}

p {
    margin: 0;
}

main {
    width: 60%;
    margin: 2% auto;
    display: flex;
}

section {
    width: 50%;
    font-family: "Strong Poinco";
    font-weight: 500;
    color: black;
    border: solid black 3px;
}

section > div {
    padding: 4% 4% 0 4%;
}

section > div > div {
    display: flex;
    align-items: center;
    margin-bottom: 4%;
}

section img {
    width: 35px;
    margin-right: 4%;
}

h1 {
    font-size: 2.5em;
    font-weight: 500;
    text-align: center;
    color: #D9E4FF;
    background-color: black;
    padding: 1% 0;
    margin: 0;
}

section p {
    font-size: 1.8em;
}

.separateur {
    align-items: center;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 4%;
}

.separateur img {
    margin: 0;
    width: 25px;
}

section div:empty {
    flex-grow: 1;
    border-top: dashed black 4px;
}

section p + p{
    margin-top: 3%;
}

img + div + p {
    margin-left: auto;
}

section > div > div > img:last-child {
    align-self: flex-start;
}

aside {
    width: 50%;
    border: solid black 3px;
}

@media only screen and (max-width: 1300px) {
    main {
        width: 80%;
    }
}

@media only screen and (max-width: 1000px) {
    main {
        width: 90%;
    }
}

@media only screen and (max-width: 800px) {
    main {
        width: 80%;
        flex-direction: column-reverse;
    }

    section, aside {
        width: 100%;
    }

    aside {
        height: 20em;
    }
}

@media only screen and (max-width: 600px) {
    main {
        width: 90%;
    }

    .section p {
        font-size: 1.6em;
    }
}

@media only screen and (max-width: 450px) {
    .playpenS {
        font-size: 4.5vw;
    }
}