:root {
    --primary-color: #d5477e;
}


html,
body {
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    background-color: burlywood;
}


h1 {
    font-size: clamp(3.5rem, 10vw, 13.5rem);
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 800;
    transition: all .1s ease;
}

h1:hover {
    color: var(--primary-color);
    text-shadow: 10px 10px 10px var(--primary-color);
}


h1+p {
    margin-top: 0;
    color: #666;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 220px);
    text-align: center;
    padding: 60px 20px;
}


div.songs {
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


span#plh {
    display: block;
}

div.songs a {
    font-size: 1.25rem;
    color: #000;
    text-decoration: none;
    margin: 0 .5rem;
    padding-inline: .25rem;
    transition: all .1s ease;
    border-radius: .25rem;
}

div.songs a:hover {
    /* text-decoration: underline; */
    color: burlywood;
    background-color: var(--primary-color);
}


footer {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    /* margin-top: auto; */
}

footer a {
    color: #666;
    text-decoration: underline;
    line-height: 2rem;
}

footer a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

@media (max-width: 768px) {

    h1 {
        font-size: 3.5rem;
    }

    div.songs {
        width: 100%;
        gap: 0.8rem;
    }

    div.songs a {
        font-size: 1.1rem;
    }

    main {
        padding: 40px 10px;
    }
}


@media (max-width: 600px) {
    ¸ h1+p {
        font-size: 0.9rem;
    }

    div.songs a {
        flex: 0 0 100%;
    }

    footer {
        font-size: 0.9rem;
    }

}


@media (max-width: 450px) {

    h1 {
        font-size: 3rem;
    }


}