/* Global Styles */
body {
    margin: 0;
    padding: 0;
    background-color: rgb(0, 0, 0);
    color: #b1b1b1;
    font-family: "Comic Relief", system-ui;
    font-weight: 400;
    font-style: normal;
    overflow: hidden;
    text-decoration: none;
    
}

/* Central GIF */
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Footer Container (Bottom Left) */
.footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 15px; /* Space between CD and Text */
    z-index: 10;
}

/* Track Image / CD Styling */
#track-image-container {
    position: relative;
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    
    opacity: 0; /* Managed by JS */
    transition: opacity 0.5s ease;
    animation: spin 15s linear infinite;
}

/* CD Hole Effect */
#track-image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
}

/* Text Animations */
#current-song span {
    display: inline-block;
    opacity: 0;
    animation: bounce 1s infinite, fadeIn 1s ease-in 0.1s forwards;
}

/* Keyframes */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Link Styles */
a {
    color: #ffffff;         /* Makes the text white */
    text-decoration: none;  /* Removes the underline */
    transition: opacity 0.2s ease; /* Optional: smooth transition for hover */
}

/* Optional: Add a subtle effect when hovering */
a:hover {
    color: #b1b1b1;         /* Fades to light grey on hover */
}