@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200&family=Raleway:wght@300&display=swap");

body.body_carte {
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

body.body_carte .bloc {
    background-image: linear-gradient(40deg, white, #a9a9a9);
    border: 2px solid rgb(211, 211, 211);
    box-shadow: 10px 10px 20px;
    max-width: 400px;
    max-height: 400px;
    display: block;
    margin: auto;
}

body.body_carte .nav {
    display: flex;
    justify-content: space-around;
    font-size: 0.8em;
    font-family: "Dosis", sans-serif;
}

body.body_carte .titre {
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: 1.4em;
    margin-top: 5px;
    margin-bottom: 2px;
}

body.body_carte .photo_profil {
    display: block;
    margin: auto;
}

body.body_carte .photo_profil:hover {
    transform: scale(1.5);
}

body.body_carte h3 {
    font-size: 1.1em;
    text-align: center;
    font-family: "Dosis", sans-serif;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 10px;
}

body.body_carte .junior {
    font-size: 1.1em;
    text-align: center;
    font-family: "Dosis", sans-serif;
    border: 1px black solid;
    border-radius: 14px;
    margin-right: 150px;
    margin-left: 150px;
    padding: 5px;
    background-color: black;
    color: white;
}

body.body_carte footer.footer_carte {
    font-size: 1em;
    font-family: "Dosis", sans-serif;
    display: flex;
    justify-content: space-around;
    margin-bottom: 5px;
}

body.body_carte footer.footer_carte a {
    text-decoration: none;
    transition: .5s;
    color: black;
}

body.body_carte .lien_retour_apprentissage {
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    font-size: 1.1em;
    font-family: "Dosis", sans-serif;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    body.body_carte .junior {
        margin-right: 100px;
        margin-left: 100px;
    }
}

@media only screen and (max-width: 768px) {
    body.body_carte .junior {
        margin-right: 50px;
        margin-left: 50px;
    }
}