@font-face {
    font-family: 'mainfont';
    src: url('./mainfont.woff2') format('woff2');
}

* {
    font-family: 'mainfont', sans-serif;
    font-variant-ligatures: contextual;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    overflow-y: auto;
}

#searchBox {
    width: calc(100% - 0.5em);
    box-sizing: border-box;
    max-width: 45em;
    padding: 10px 20px;
    margin: 0px 0px;
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    background-color: #f9f9f9;
}

.overlay {
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
}

header {
    width: calc(100% - 0.5em);
    position: fixed;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

main {
    padding: 20px;
    margin-top: 10em;
}

.overlay-content {
    position: relative;
    width: max(80vw);
    height: max(80vh);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: black;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
}

.song {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
