<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    font-size: 3em;
    font-weight: 800;
}


h2 {
    font-size: 1.5em;
    font-weight: 100;
}

h3 {
    font-weight: 100;
}

p {
    font-family: 'Space Mono';
    font-size: 12px;
}

.container-full {
    display: flex;
    flex-direction: column;

}

.container-nav {
    display: flex;
    justify-content: center;
    background-color: lightgreen;
    height: 210px;
    align-items: center;
}

.container-content {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

.container-content&gt;h1 {
    align-self: center;
    margin-top: 3%;
    margin-bottom: 3%;
}

.profil {
    width: 10em;
    height: 10em;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 1px 5px 30px #b2bec3;
}


.infos {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-left: 2%;
    align-items: flex-end;
}

.liste-infos {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    align-items: flex-end;
}



.links&gt;a {
    text-decoration: none;
    color: black;
}


a.left {
    position: relative;
}

a.left:before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}


a.left:hover:before {
    visibility: visible;
    width: 100%;
}

.technos {
    display: flex;
    flex-direction: column;
    list-style: none;
    justify-content: space-evenly;
}

.technos&gt;li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5px;
    margin-bottom: 15px;
}

.liste-technos {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}

.nomsTechs {
    margin-top: 2.5px;
    margin-bottom: 2.5px;
}

.imgs-liste {
    width: 4em;
    height: 4em;
    border-radius: 10%;
    object-fit: scale-down;
    box-shadow: 1px 5px 30px #b2bec3;
    margin-bottom: 2.5px;
}

hr {
    margin-top: 60px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
    border: solid 0.2px black;
}

.footer {
    height: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    margin-bottom: 20px;
}

.footer li {
    margin-left: 5px;
    margin-right: 5px;
    list-style: none;
}

@media only screen and (max-width: 700px) {


    .profil {
        width: 8em;
        height: 8em;
        margin-left: 16%;
    }

    .infos h1 {
        font-size: 2.3em;
        margin-left: 12%;
    }

    .infos h2 {
        font-size: 1.2em;
        margin-left: 12%;
    }

    .container-content&gt;h1 {
        align-self: center;
        margin-top: 6%;
        margin-bottom: 6%;
    }

    hr {
        margin-top: 40px;
        margin-bottom: 20px;
        margin-left: 30px;
        margin-right: 30px;
        border: solid 0.2px black;
    }
}</pre></body></html>