@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
:root {
    --primary-color: #6e40c9;
    --primary-dark: #5a32b0;
    --border-radius: 12px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    --border-color: #a362ff;
  }
* {
    margin: 10;
    padding: 10;
    box-sizing: border-box;
}
.navbar {
    background-color: var(--primary-color);
    padding: 12px 24px;
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 15px;
    box-shadow: var(--box-shadow);
    border-bottom: 3px solid var(--border-color);
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease;
  }
  
  .navbar a:hover {
    background-color: var(--primary-dark);
  }

body {
    font-family: 'Inter', sans-serif;
    background-color: #0E0616;
    color: #FFFFFF;
    line-height: 1.8;
    padding-top: 80px;
    text-align: center;
}


section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

section h1 {
    font-size: 2rem;
    color: #A362FF;
    margin-bottom: 15px;
}

section p {
    font-size: 1.1rem;
    color: #D1D1D1;
    max-width: 800px;
    margin-bottom: 20px;
}


section > div,
section > ul,
section > article {
    background: rgba(26, 11, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    padding: 30px;
    max-width: 850px;
    width: 90%;
    margin: 20px 0;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

section > div:hover,
section > ul:hover,
section > article:hover {
    transform: translateY(-5px);
}


li {
    list-style: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: #A362FF;
    margin: 15px 0 5px 0;
}


.Socials {
    display: flexbox;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    flex-wrap: wrap;
    flex-direction: row;
}

.Socials a svg {
    transition: transform 0.3s ease-in-out, fill 0.3s ease-in-out;
}

.Socials a:hover svg {
    transform: scale(1.1);
    fill: #A362FF;
}


@media screen and (max-width: 768px) {
    section {
        padding: 30px 10px;
    }

    section h1 {
        font-size: 1.5rem;
    }

    section p {
        font-size: 1rem;
    }

    li {
        font-size: 1.1rem;
    }

    .Socials {
        flex-direction: row;
        gap: 20px;
    }
}
