body {
    background-color: rgb(255, 211, 49);
    font-family: sans-serif;
    margin: 0;
}

.container {
    max-width: 1170px;
    margin: auto;
    padding: 10px 16px 16px 16px;
    background-color: white;
}

.container > h1 {
    text-align: center;
}
.notice {
    text-align: center;
    margin-bottom: 4px;
}
#songlist {
 display: flex;
 gap: 8px;
 flex-direction: row;
 flex-wrap: wrap;
}
footer {
    text-align: center;
}
.song {
    cursor: pointer;
    font-weight: normal;
    padding: 16px;
    width: 49%;
    background-color: rgb(255, 255, 200);
    box-sizing: border-box;
}

.search {
    margin: auto;
    padding: 8px;
    border-radius: 16px;
    width: 512px;
    display: block;
    margin-bottom: 16px;
}



/* MODAL STYLES
-------------------------------*/
.jw-modal {
    /* modals are hidden by default */
    display: none;

    /* modal container fixed across whole screen */
    position: fixed;
    inset: 0;

    /* z-index must be higher than everything else on the page */
    z-index: 10000;
    
    /* semi-transparent black background exposed by padding */
    background-color: rgba(0, 0, 0, .75);
    padding: 40px;

    /* enables scrolling for tall modals */
    overflow: auto;
}

.jw-modal.open {
    display: block;
}

.jw-modal-body {
    padding: 20px;
    background: #fff;
    position: relative;
}
#songvideo {
    max-width: 95%;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 10001;
    padding: 5px 10px;
    line-height: 1;
}

.close-button:hover {
    color: #000;
    background-color: #f0f0f0;
    border-radius: 3px;
}

body.jw-modal-open {
    /* body overflow is hidden to hide main scrollbar when modal window is open */
    overflow: hidden;
}

#tags div {
    display: inline-block;
    width: 20%;
    padding: 5px;
    margin: 5px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: bold;
}
#tags div.selected {
    border: solid 2px red;
}