body{
    margin: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    font-family: 'Righteous', cursive;
    color: white;
}

#main{
    height: 100%;
    width: 100%;
}

section{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

section.center{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loadingScreen{
    font-size: 3vw;
}

#mainScreen{
    display: none;
}

#mainScreen h1{
    position: relative;
    font-size: 6vw;
    color: #ffdd1f;
    cursor: pointer;
}

#mainScreen h1::after{
    content: '';
    width: 100%;
    height: 5%;
    background: blueviolet;
    position: absolute;
    top: 0;
    left: 0;
}

#mainScreen h1::before{
    content: '';
    width: 100%;
    height: 5%;
    background: blueviolet;
    position: absolute;
    bottom: 0;
    left: 0;
}

#lyrics{
    display: none;
}

#lyrics>div{
    font-size: 3vw;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}