@import url('https://fonts.googleapis.com/css2?family=Anton&family=Eater&family=Playwrite+PE:wght@100..400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    background-color: #121212;
    font-family: 'Arial', sans-serif;
    color: white;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.profile-card {
    background-color: #1c1c1c;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    position: relative;
}

.profile-header {
    margin-bottom: 20px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.profile-name {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(209, 255, 255, 0.8), 0 0 30px rgba(206, 255, 255, 0.8);
}

.profile-description {
    font-size: 16px;
    color: #888;
    margin-bottom: 5px;
}

.profile-quote {
    font-size: 14px;
    color: #bbb;
    font-style: italic;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(219, 255, 255, 0.7); /* Ajout de l'effet néon */
}

.social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(189, 255, 255, 0.8), 0 0 40px rgba(225, 255, 255, 0.8), 0 0 50px rgba(211, 255, 255, 0.8); /* Effet néon au survol */
}


#discord {
    background-image: url('https://img.icons8.com/ios7/200/FFFFFF/discord-logo--v2.png');
}

#spotify {
    background-image: url('https://www.citypng.com/public/uploads/preview/spotify-white-logo-symbol-icon-hd-png-701751694970246wh0arrwxm2.png');
}

#github {
    background-image: url('../media/github.png');
}

#paypal {
    background-image: url('https://companieslogo.com/img/orig/PYPL.D-3cbc0221.png?');
}

.welcome {
    display: flex;
    position: absolute;
    text-align: center;
    font-family: "Eater", serif;
    font-weight: 400;
    font-style: normal;
    left: 45%;
    font-size: 50px;
    bottom: 50%;
}