@font-face {
    font-family: Bevellier;
    src: url(./Bevellier-Bold.woff);
}
html {
    color:#011021;
    background-image: url(background-img.png);
    background-attachment: fixed;
    background-color: #2c619e;
    background-blend-mode: multiply;
    font-family: "Bevellier", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1em;
    line-height: 22px;
    padding: 0px;
}
body {
    width: 75vw;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
a {
    text-decoration: none;
    color: #9ac9ff;
}
a:hover {
    color: #d7b3ff;
}
.topheader {
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #011021;
    border-spacing: 0px;
    border-collapse: collapse;
    width: 600px;
    height: 20px;
    padding: 10px;
    margin: 20px auto;
    position: relative;
}
.topheader ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
.topheader li {
    display: inline;
  }
.topheader li a {
  padding: 0px 30px;
}
.headertext {
    line-height: 20px;
    padding: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
}
.mainbody {
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #011021;
    min-height: 25vh;
    padding: 10px 50px;
    margin: 20px auto;
    position: relative;
}
.albumlist { /* MtEEHt is so long that i quite literally need to split it into columns dw about it */
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.songlinks ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
.songlinks li {
    display: inline;
  }
.songlinks li a {
  padding: 0px 30px;
}
.songinfo {
    display: flex;
}
.songcolumn {
    flex: 50%;
}
.lyricbutton {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .lyricbutton:hover {
    background-color: #ccc;
}
  
  /* Style the collapsible content. Note: hidden by default */
.lyrics {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}