*{
    padding: 0;
    margin: 0;
}


body{
    background: #050625;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#cover{

    margin-top: 10vh;
}
#cover img{
    width: 300px;
    animation: fade 5000ms infinite;

}

#main{
    position: fixed;
    bottom:20vh;
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#main p{
    color: #bcd3f6;
    text-align: center;
}


@-webkit-keyframes fade {

    from {

        opacity: 1.0;

    }

    50% {

        opacity: 0.4;

    }

    to {

        opacity: 1.0;

    }

}


#back{
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
}
#back svg{
    height: 15px;
    width: 15px;
    margin-right: 10px;
}

#back p{
    line-height: 15px;
    font-size: 12px;
    color: white;
}