* {
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-style: normal;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
    -moz-window-dragging: none;
    
}



html,body {
    height: 100%;
}

body {
    display: flex;
    gap: clamp(24px,3vh,48px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
    background: linear-gradient(135deg,#3eb489 25%, #2d8f5f);
    background-size: 400% 400%;
    animation: animationBackground 15s ease-in-out infinite;
}

@keyframes animationBackground {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: clamp(0px,90vw,450px);
    height: clamp(0px,80vh,700px);
    text-align: center;
    background-color: rgba(125, 194, 165, 0.5);
    border-radius: 32px;
    border: solid 2px rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}


.text {
    font-weight: 300;
    margin-left: 15px;
    margin-right: 15px;
    color: #F5F5F5;
}

.buttons {
    display: flex;
    flex-direction: row;
    width: 164px; /* Ne pas oublier d'ajouter le gap à l'addition */
    gap: 20px;
    flex-wrap: wrap;
    
}

.button {
    display: flex;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255,0.1);
    border-radius: 16px;
    transition: transform 0.5s ease-in-out;
}



.gmail:hover {
    background: linear-gradient(45deg, #ea4335, #ff6f61);

}

.discord:hover{
    background: linear-gradient(45deg, #7289d9, #b084f9);
}
.button img {
    display: block;
    width: 40px
}

.github:hover {
    background: linear-gradient(45deg,#2b2b2b, #3a3a3a);
}

.ko-fi:hover {
    background: linear-gradient(45deg,#0f73f7, #0053c7);
}




.icon {
    display: block;
    margin: auto;
    border-radius: 100%;
    width: 112px;
    height: 112px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 0.2em solid rgba(255, 255, 255, 0.3);
    transition: 0.5s ease-in-out;
    transition-property: rotate scale;
}


.gold-text {
    background-size: 400%;
    background-image: linear-gradient(45deg,#FFD700,#F5F5F5);
    background-position: 70%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pseudo {
    margin-top: 0.75em;
    font-size: 2.5em;
}


footer p{
    transform: scale(1.25);
    color: #F5F5F5;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
}

.playing {
    animation: playing 10s linear infinite;
}

@keyframes playing {
    0% {
        opacity: 0.5;
        transform: rotate(360deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}


@media (min-width:1024px) {
    @keyframes discord {
        0% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(22.5deg)
        }

        75% {
            transform: rotate(-22.5deg)
        }

        100% {
            transform: rotate(0deg);
        }

    }


    .icon:hover {
        box-shadow: 0 30px 35px rgba(0, 0, 0, 0.2);
        rotate: 5deg;
        scale: 1.10;
    }

    .discord img:hover {
        animation: discord 2s ease-out 0.5s infinite;
    }

    .button:hover {
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
        transform: translateY(-0.5em);
    }

}