@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --dark-red: #8b0000;
    --dark-grey: #1a1a1a;
    --light-grey: #b3b3b3;
    --white: #ffffff;
    --green-spotify: #1db954;
    --black-transparent: rgba(0, 0, 0, 0.4);
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Changed from center to flex-start */
    padding-top: 100px; /* Adds space from the top */
    height: 100vh;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    
    /* Full-page background image */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/background.png') no-repeat center center fixed;
    background-size: cover;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: relative;
    z-index: 1; /* Ensures content is above the background */
}

.album-cover {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Add text shadow for better readability */
}

.subtitle {
    font-size: 0.9rem;
    color: var(--light-grey);
    margin: 0 0 25px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.spotify-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background-color: var(--green-spotify);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    gap: 10px;
    text-decoration: none; /* Removes underline from the link */
}

.spotify-button:hover {
    background-color: #1ed760;
    transform: translateY(-2px);
}

.spotify-icon {
    font-size: 1.5rem;
}

.arrow-icon {
    font-size: 1rem;
    margin-left: 10px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--light-grey);
    margin-top: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}