:root {
    --base: #24273a;
    --mantle: #1e2030;
    --crust: #181926;
    --surface: #363a4f;
    --text: #cad3f5;
    --green: #a6da95;
    --red: #ed8796;
    --subtext: #a5adcb;
    --mauve: #c6a0f6;
    --pink: #f5bde6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--base);
    color: var(--text);
    user-select: none;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.social-icons span {
    font-size: 20px;
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s;
}

.social-icons a {
    font-size: 20px;
    margin: 6px;
    color: var(--text);
}

.social-icons span:hover {
    color: var(--mauve);
}

/* QUICK ACCESS */
.quick-access {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.quick-access span {
    cursor: pointer;
    background: var(--surface);
    border: solid 2px transparent;
    border-radius: 18px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .2s;
    padding: 10px;
}

.quick-access span:hover {
    border: solid 2px var(--mauve);
}

.quick-access img {
    max-width: 100px;
    border-radius: 12px;
}

.quick-access .song-name {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text);
    text-align: center;
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    .quick-access {
        grid-template-columns: repeat(2, 1fr);
    }
}

footer {
    font-size: 14px;
    color: var(--subtext);
}

footer span {
    cursor: pointer;
    color: var(--mauve);
    text-decoration: none;
}

footer span:hover {
    text-decoration: underline;
}