
/* Apply Google Fonts */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #424549;
}


.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensure content appears on top of the video background */
    background-color: rgba(255, 255, 255, 0.8); /* Add a semi-transparent background to improve readability */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #222;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

h2 {
    font-size: 1.5rem;
    color: #1DB954;
    margin-bottom: 20px;
}

#spotify-widget {
    background-color: #D9DADB;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact {
    margin-top: 30px;
}

.contact h2 {
    margin-bottom: 10px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    margin-bottom: 5px;
    color: #222;
    font-size: 1.2rem;
}

.contact-item a {
    color: #1DB954;
    text-decoration: none;
    font-size: 1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

#discord-username {
    font-size: 1rem;
    color: #7289da; /* Discord's brand color */
}


