body {
    background: whitesmoke;
    font-family: 'Roboto', sans-serif;
}

header {
    height: 175px;
    background-color: rgb(0, 0, 0);
    font-size: 40px;
    color: whitesmoke;
    border-radius: 10px;
    
}

.linkheader a {
    text-decoration: none;
    padding-left: 10px;
}



h4:hover::after {
    width: 100%;
}

header a {
    padding: 0 10px;
    position: relative;
}

header a:after {
    content: "";
    position: absolute;
    background-color: beige;
    height: 3px;
    width: 100%;
    left: 0;
    bottom: -6px;
    width: 0%;
    transition: 0.3s;
}

header a:hover::after {
    width: 100%;
}



footer {
    height: 100px;
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 10px;
}


footer a {
    text-align: center;
    width: 100px;
}


em {
    font-style: normal;
    font-size: 1.8em;
    display: flex;
    justify-content: center;
}

text {
    color: black;
}

strong {
    color: beige;
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
}

footer img {
    width: 40%;

}

aside {
    text-align: center;
}

.moi {
    height:600px;
    width: 600px;
    display: flex;
    margin: auto;
    background-color: whitesmoke;
    
}

.header h4 {
    display: flex;
    padding: 5px;
}

.nomprenom strong {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5px;
}

.linkheader {
    text-align: end;
    padding: 5px;
    display: flex;
    justify-content: flex-end;
}

.nomprenom {
    text-align: center;
}

.container a {
    text-decoration: none;
}
.container span {
    font-size: 3em;
}

.test {
    display: flex;
}

.container {
    gap: 25px;
  
}
.big-container {
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 1fr);
}
.container-img {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(1.png);
    object-fit: cover;
    background-repeat: no-repeat;
    min-width: 31vw;
    min-height: 35vh;
    border-radius: 10px;
}



textPath::first-line {
    /* Styles que vous souhaitez appliquer à la première ligne du texte */
    font-size: 24px;
    font-weight: bold;
    fill: red; /* Remplacez par votre couleur de texte */
    /* Ajoutez d'autres styles selon vos besoins */
}


h3, h4 {
    color: beige;
    font-weight: 500;
    margin-block: auto;
}

p {
    color: beige;
}

a {
    color: beige;
}