*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: grey;
}
.mére ul li{
margin-left: 2em;
display: inline;
margin: 3em;
}
  .mére ul li span {
    font-size: 3em;
    margin-right: 8em;
    color: aqua;
    text-shadow: 0 0 8px white;
    box-shadow: 1Opx 05px 05px red;
    border-radius: 1em;
}
.pra1{
    margin-top: 6em;
    margin-left: 3em;
}
.pra2{
    margin-top: 2em;
    margin-left: 3em;
}
.sp{
    font-size: 2em;
    margin-right: 8em;
    color: greenyellow;
    text-shadow: 0 0 8px orange;
    box-shadow: 10px 05px 05px red;
    border-radius: 1em;
}
.a1{
    background: rgb(255, 252, 252);
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    color: red;
    display: inline-block;
    margin: 30px 0;
    border-radius: 5px;
}
ul li a{
    text-decoration: none;
    color: black;
}

.image{
    width: 30%;
    height: 50%;
    position: absolute;
    bottom: 100px;
    right: 69px;
    border-radius: 30px;
}
.image img{
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: bottom 1s, left 1s;
}

.row{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 100px;
}
.row .col .skill{
    width: 180px;
    height: 180px;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: 60px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5),
                -5px -5px 15px rgba(0, 0, 0, 0.5);
}
.row .col:nth-child(1) .skill{
    background: conic-gradient(red 65%, transparent 0);
}
.row .col:nth-child(2) .skill{
    background: conic-gradient(red 45%, transparent 0);
}
.row .col:nth-child(3) .skill{
    background: conic-gradient(red 40%, transparent 0);
}
.row .col:nth-child(4) .skill{
    background: conic-gradient(red 55%, transparent 0);
}
.row .col .skill::before{
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background: rgb(255, 193, 193);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 5px 5px 15px rgb(0, 0, 0, 0.5) inset,
                -5px -5px 15px rgb(0, 0, 0, 0.5) inset;
}
.row .col .skill .content{
    color: red;
    position: absolute;
    font-size: 15px;
    font-weight: 300px;
    text-align: center;
    user-select: none;
}
.row .col .skill .content span{
    display: inline-block;
    padding: 10px;
    text-align: center;
    letter-spacing: 2px;
}