body {
    margin: 0;
    font-family:'Segoe UI', sans-serif;
    font-weight: 500;
    background-image: url("../../IMAGES/fond.jpg");
    background-size: cover;
}

header {
    width: 100%;
}

header ul {
    margin: 0;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    list-style: none;
}

header a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
}

header a:hover {
    color: #39133F;
    transition: 0.2s;
}

h1 {
    position: absolute;
    margin-top: 50%;
    margin-left: 10%;
    font-size: 60px;
    background: linear-gradient(
    100deg,
    #bd73bc 0%,
    #bd73bc 40%,
    #ffffff 50%,
    #bd73bc 60%,
    #bd73bc 100%
    );
    background-size: 200% 100%;
    background-position: 200% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear forwards infinite;
}

@keyframes shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: 0;
  }
}

.portfolio {
    position: fixed;
    top: 28%;
    right: 12%;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.aca {
    padding: 20px 80px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 40px;
    border-radius: 70px;
    box-shadow: 5px 10px 20px rgba(72, 0, 95, 0.4);
    background: linear-gradient(
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.3) 30%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.3) 70%,
    rgba(255, 255, 255, 0.1) 100%
    );
}

.pro {
    padding: 20px 80px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 40px;
    border-radius: 70px;
    box-shadow: 5px 10px 20px rgba(72, 0, 95, 0.4);
    background-color: rgba(255, 255, 255, 0.1);
}

.pro:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transition: 0.3s;
}

.ring {
    margin-left: 10%;
    position: relative;
    width: 400px;
    height: 400px;
}

.ring i {
    position: absolute;
    top: 45px;
    width: 95%;
    height: 95%;
}

.ring .a {
    border-radius: 42% 58% 60% 40% / 40% 45% 55% 60%;
    animation: animate 6s linear infinite;
    border: 6px solid #c83fc6;
    filter: drop-shadow(0 0 15px #c83fc6);
}

.ring .b {
    border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%;
    animation: animate 4s linear infinite;
    border: 6px solid #9d3998;
    filter: drop-shadow(0 0 15px #9d3998);
}

.ring .c {
    border-radius: 55% 45% 35% 65% / 65% 35% 45% 55%;
    animation: animate 10s linear infinite;
    border: 6px solid #cb63a8;
    filter: drop-shadow(0 0 15px #cb63a8);
}

@keyframes animate {
    0%, 100% {
      transform: rotate(0deg) scale(1);
    }
    50% {
      transform: rotate(180deg) scale(1.1);
    }
}

footer {
    margin: 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user {
    padding-left: 10px;
    color: #ffffff;
    font-size: 30px;
}

.copyright {
    margin: 0;
    text-align: center;
    color: #ffffff;
}

.contact {
    position: relative;
    right: 40px;
    font-size: 30px;
    display: flex;
    gap: 25px;
}

.contact a {
    color: #ffffff;
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 48px;
        margin-top: 40%;
        margin-left: 8%;
    }

    .portfolio {
        top: 25%;
        right: 8%;
        gap: 70px;
    }

    .aca, .pro {
        font-size: 32px;
        padding: 15px 60px;
    }

    .ring {
        width: 320px;
        height: 320px;
        margin-left: 8%;
    }

    footer {
        font-size: 18px;
    }

    .user, .contact {
        font-size: 24px;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 38px;
        margin-top: 35%;
        margin-left: 5%;
    }

    .portfolio {
        position: static;
        margin: 30px auto;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        right: auto;
        top: auto;
    }

    .aca, .pro {
        font-size: 26px;
        padding: 12px 40px;
        border-radius: 50px;
    }

    .ring {
        width: 260px;
        height: 260px;
        margin-left: 0;
        margin: 20px auto;
    }

    footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact {
        position: static;
        justify-content: center;
        gap: 20px;
        right: auto;
        font-size: 22px;
    }

    .user {
        padding-left: 0;
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
        margin-top: 30%;
        margin-left: 3%;
    }

    .portfolio {
        flex-direction: column;
        gap: 25px;
        margin: 20px auto;
        width: 100%;
        align-items: center;
    }

    .aca, .pro {
        font-size: 20px;
        padding: 10px 30px;
        border-radius: 40px;
        box-shadow: 3px 6px 12px rgba(72, 0, 95, 0.4);
    }

    .ring {
        width: 200px;
        height: 200px;
    }

    footer {
        font-size: 16px;
        flex-direction: column;
        gap: 8px;
    }

    .user, .contact {
        font-size: 18px;
    }
}