/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #fff;
    font-family: Arial, sans-serif;
    padding: 2rem;
    color: #000;
}

/* HEADER */
.music-header {
    text-align: center;
    margin-bottom: 2rem;
}

.music-header h1 {
    font-family: 'Annie Use Your Telescope', cursive;
    color: #1f2a1f;
    font-size: 3.6rem;
}

/* BOARD */
.music-board {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

/* NOTE BASE */
.music-note {
    position: relative;
    width: 220px;
    background: #fff;
    padding: 1rem;
    border: 2px solid #b3cf99;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.05);
    transform: rotate(-1.5deg);
    transition: transform .2s ease;
}

.music-note:hover {
    transform: scale(1.06) rotate(0deg);
}

/* TAPE */
.music-note::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 18px;
    width: 42px;
    height: 20px;
    background: #f7f4e8;
    transform: rotate(-11deg);
    box-shadow: 0 2px 3px rgba(0,0,0,0.15);
}

/* ALBUM COVERS */
.album-cover {
    width: 100%;
    border-radius: 4px;
}

/* TITLE */
.album-title {
    text-align: center;
    margin-top: 0.6rem;
    color: #1f2a1f;
    font-size: 1rem;
    font-weight: bold;
}

.artist-name {
    display: block;
    font-size: 0.8rem;
    color: #777;
}

/* FOOTER */
.music-footer {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}
