body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif; /* Updated to Roboto font */
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff; /* Ensure font color remains white */
    text-align: center;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

header {
    padding: 20px;
}

.logo {
    max-width: 150px;
    height: auto;
}

h1 {
    font-size: 3rem;
    margin: 10px 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

p {
    font-size: 1.2rem;
    color: #fff;
}

.spotify-link {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 24px;
    background-color: #1DB954;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.2s;
}

.spotify-link:hover {
    background-color: #1ed760;
    transform: scale(1.05);
}

.social-media a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #1DB954;
    text-decoration: underline;
}

footer {
    margin-top: 20px;
    font-size: 1rem;
    color: #c0c0c0;
}

.single-info {
    margin: 40px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Reduced background opacity */
    border-radius: 10px;
    max-width: 600px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Added light shadow */
}

.single-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.single-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.single-info .single-cover {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.single-links {
    margin-top: 15px;
}

.single-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #1DB954;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.single-links a:hover {
    background-color: #1ed760;
    transform: scale(1.05);
}