html,
body {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: 100%;
    padding: 0;
    margin:0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    background-color: #FBF7F5;
}

main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
}

.responsive-image {
    width: 100%;
    height: auto;
}

figure {
    padding: 0;
    margin: 0;
}

.background-fusee {
    background-image: url("./images/fusee-pointille.svg");
    background-repeat: no-repeat;
}

@media only screen and (max-width: 600px) {
    .content {
        min-width: 75%;
        max-width: 86%;
    }
    .background-fusee {
        background-position: 0 90%;
        background-size: 200%;
    }
}

@media only screen and (min-width: 601px) {
    .content {
        min-width: 20%;
        max-width: 38%;
    }

    .background-fusee {
        background-position: 0 38%;
        background-size: 100% auto;
    }
}

h1,
h2,
h3 {
    font-weight: bold;
}

.text-center {
    text-align: center;
}