/* julie burin des roziers
feuille de style sur la page d'une figurine
09.01.2025 */

main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
    text-align: justify;
}

p {
    width: 400px;
    padding-left: 100px;
}

img {
    height: 400px;
    border-radius: 200px;
    border-color: #940000;
    border-width: 1px;
    border-style: solid;
}

@media screen and (max-width: 1000px) {
    main {
        flex-direction: column;
        align-items: center;
        padding-left: 50px;
        padding-right: 50px;
    }

    p {
        width: auto;
        padding-left: 0px;
        padding-top: 70px;
    }
}

@media screen and (max-width: 500px) {
    img {
        height: 250px;
        border-radius: 125px;
    }
}