@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #000000;
    color: rgb(255, 255, 255);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.container {
    position: static;
}

h1 {
    font-size: 3rem;
    font-weight: bolder;
    font-family: 'Cabin';
}

.bold {
    color: rgb(217, 176, 255);
    font-family: 'Poppins';
    font-style: italic;
    display: inline-block;
    opacity: 50%;
    transition: opacity 0.5s, transform 0.5s;
}

.description {
    font-family: 'Poppins';
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto;
    opacity: 0.8;
}

button {
    --glow-color: rgb(217, 176, 255);
    --glow-spread-color: rgba(191, 123, 255, 0.781);
    --enhanced-glow-color: rgb(134, 116, 150);
    --btn-color: rgb(100, 61, 136);
    border: .25em solid var(--glow-color);
    padding: 1em 3em;
    color: var(--glow-color);
    font-size: 15px;
    font-weight: bold;
    background-color: var(--btn-color);
    border-radius: 1em;
    outline: none;
    box-shadow: 0 0 1em .25em var(--glow-color),
           0 0 4em 1em var(--glow-spread-color),
           inset 0 0 .75em .25em var(--glow-color);
    text-shadow: 0 0 .5em var(--glow-color);
    position: relative;
    transition: all 0.3s;
}
   
button::after {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 120%;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--glow-spread-color);
    filter: blur(2em);
    opacity: .7;
    transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
}
   
button:hover {
    color: var(--btn-color);
    background-color: var(--glow-color);
    box-shadow: 0 0 1em .25em var(--glow-color),
           0 0 4em 2em var(--glow-spread-color),
           inset 0 0 .75em .25em var(--glow-color);
}
   
button:active {
    box-shadow: 0 0 0.6em .25em var(--glow-color),
           0 0 2.5em 2em var(--glow-spread-color),
           inset 0 0 .5em .25em var(--glow-color);
}

#know-me {
    font-family: 'Cabin';
    font-size: 1.4rem;
    font-weight: bold;
    padding: 17px 20px;
    opacity: 0.9;
}

#footer {
    bottom: 10px;
    font-family: 'Poppins';
    opacity: 25%;
    position: fixed;
}

/* PARTICELLE */
.particles {
    position:absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 40px;
    background: white;
    opacity: 0.8;
    border-radius: 7px;
    animation: floatUp 3s linear infinite;
}

@keyframes floatUp {
    from {
        transform: translateY(1000px);
        opacity: 1;
    }
    to {
        transform: translateY(-100px);
        opacity: 0;
    }
}

.social-icons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: #212121;
    padding: 10px 15px;
    border-radius: 15px;
}

.icon {
    color: white;
    opacity: 40%;   
    transition: transform 0.3s;
}

.icon:hover{
    transform: scale(1.3);
    opacity: 100%;
}