body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    background-color: #121212;
    color: #fff;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

header {
    text-align: center;
    padding: 4rem 0;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

#hero {
    text-align: center;
}

#hero img {
    width: auto;
    max-width: 400px;
    max-height: 400px;
    object-fit: contain;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

#hero img:hover {
    transform: scale(1.05);
}

@keyframes jump {
    0% { transform: translateY(0) scale(1.05); }
    50% { transform: translateY(-30px) scale(1.05); }
    100% { transform: translateY(0) scale(1.05); }
}

.jump {
    animation: jump 0.5s ease-out;
}

#hero h2 {
    font-size: 2rem;
    margin-top: 1rem;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}


h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.music-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.music-card:hover {
    transform: translateY(-10px);
}

.music-card img {
    max-width: 100%;
    border-radius: 5px;
}

.music-card h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.play-button {
    background-color: #1db954;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: #1ed760;
}

#about {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #1e1e1e;
}

.note-description {
    font-size: 1rem; /* Adjust as needed */
    margin-top: 1rem;
    text-align: center;
}