* {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;

}

body {
    background-image: url('../img/illustrations/background.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center; 
    max-width: 1200px; 
    border-radius: 50px;
    background: #000000;
    box-shadow:  20px 20px 60px #504d4d, -20px -20px 60px #726f6f;
    padding: 1em;
}

.content .profil,
.content .auteur {
    width: 100%;
    max-width: 40em; 
    display: flex;
    justify-content: center; 
}

.content .profil {
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-bottom: 2em; 
}

.content .profil h1,
.content .box .infoBox h2 {
    text-shadow: 0 0 10px #c9c9c9;
}

.content .profil .pdp img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgb(117, 117, 117);
    margin-right: 1em;
}

.content .box {
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255, 0.08);
    border: 1px solid rgb(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 1em;
    max-width: 40em;
    transition: 0.5s, transform 0.5s;
    width: 100%;
}

.content .box .infoBox .skill {
    display: flex;
    gap: .3em;
}

.content .box .infoBox .skill p,
.content .box .infoBox .skill p strong {
    font-family: 'Rubik', sans-serif;
    font-size: 90%;
}

.content .box .ppBox img {
    width: 70px;
    height: 70px;
    border-radius: 20%;
    object-fit: cover;
    margin-right: 10px;
}

.content .auteur {
    font-size: 80%;
    margin-top: 2em;
}

.content .contact a {
    margin-right: 10px;
}

#messageTemp {
    font-size: 90%;
    font-style: italic;
}

@media only screen and (max-width: 700px) {
    .content {
        transform: scale(0.9);
        margin: 5vh 0;
    }
}

@media only screen and (max-width: 450px) {
    .content {
        transform: scale(0.8);
    }

    .content .box .infoBox .skill p strong {
        font-weight: 900;
    }
}

@media only screen and (max-width: 400px) {
    .content {
        transform: scale(0.75);
    }

}