body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(20, 20, 30);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#profileCard {
    background: rgba(25, 25, 50, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    width: 300px;
    backdrop-filter: blur(10px);
}

#profileCard img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.username {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.welcome {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.description {
    font-size: 14px;
    line-height: 1.6;
}

.highlighted {
    color: #ff00ff !important;
    font-weight: bold !important;
}

.skills {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.skills li {
    margin: 5px 0;
}

.discord-button {
    background: transparent;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.discord-button:hover {
    background: #ff00ff;
    color: white;
}


#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgb(20, 20, 30), rgb(40, 40, 60));
}