@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Waiting+for+the+Sunrise&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
body{
    background-color:lavender;
    background-attachment:fixed;
    background-position:center;
    background-size:cover;
    letter-spacing:1px;
    text-align:left;
    font-size:13px;
    line-height:20px;
    font-family:'Quicksand', sans-serif;
    margin:0 auto;
    color:black;
}

#main{
    position:relative;
    width:700px;
    margin:60px auto;
}

#preloader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:lavender;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:opacity 0.8s ease;
    z-index:9999;
}

#preloader.fade-out{
    opacity:0;
    pointer-events:none;
}

.loadingspinner{
    height:250px;
    width:250px;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to {transform:rotate(360deg);}
}

.title{
    width:100%;
    height:60px;
    font-size:50px;
    font-family:'Sacramento', cursive;
    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.summary{
    height:auto;
    width:100%;
    margin-top:15px;
    margin-bottom:15px;
}

.return{
    top:0;
    left:0;
    height:30px;
    width:30px;
    padding:16px;
}

a{
    color:blue;
    text-decoration:underline gold;
    position:relative;
}

a::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color:gold;
    transform:scaleX(0);
    transform-origin:left center;
    transition:transform 0.4s ease;
    z-index:-4;
}

a:hover::before{
    transform:scaleX(1);
}

.songentries{
    width:100%;
    height:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:0 1rem;
}

.songentry{
    width:110px;
    height:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px black solid;
    border-radius:10px;
    cursor:pointer;
    transition:transform 0.4s ease;
    transform:scale(1);
}

.songentry:hover{
    transform:scale(1.15);
}

.songnotes{
    position:fixed;
    height:auto;
    width:300px;
    background-color:lemonchiffon;
    box-shadow:3px 3px 3px 4px rgb(0, 0, 0, 0.2);
    border-radius:8px;
    top:26%;
    left:68%;
    padding:10px;
    box-sizing:border-box;
    z-index:1000;
    font-family:'Waiting for the Sunrise', cursive;
}

.songnotestitle{
    height:20px;
    width:auto;
    position:absolute;
    top:-10px;
    left:8px;
    font-family:'Waiting for the Sunrise', cursive;
    font-size:20px;
}

.ipod{
    position:fixed;
    top:25%;
    left:15%;
    height:460px;
    width:280px;
    background-image:url('https://files.catbox.moe/earsil.png');
    background-position:center;
    background-size:cover;
    z-index:1000;
    pointer-events:none;
}