@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500&display=swap');

* {
    font-family: 'JetBrains Mono', monospace;
    color: white;
    margin: 0;
    padding: 0;
}

body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.wallpaper {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://i.postimg.cc/xjN7yPps/background.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.profiles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.pfp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #fff;
}

h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

.role {
    color: #ddd;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.social-icons {
    margin-top: 10px;
}

.social-icon {
    width: 30px;
    margin: 0 5px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.description-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: auto;
}

.description-box h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.description-box p {
    margin-bottom: 10px;
}

.description-box a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;
}

.description-box a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .profiles {
        flex-direction: column;
        align-items: center;
    }

    .profile-card {
        width: 100%;
        max-width: 400px;
    }

    .description-box {
        font-size: 14px;
    }
}