:root{
    --main-text-color: white;
    --imp-text-color: orange;
}
*{
    font-family: inconsolata,monospace;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
    color: var(--main-text-color);
    
}
body{
    /*background-color: #232323;*/
    background-image: url(Images/gradient-black-background-with-wavy-lines.jpg);
    background-size: cover;
    overflow: hidden;
}
ul{
    list-style-type: circle;
}

.back-button{
    width: 2vw;
    height: 2vw;
    color: white;
    position: absolute;
    left: 1vw;
    top: 1vw;
    z-index: 10000;
}

.title{
    margin-top: 5vw;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 5rem;
    position: relative;
}

.main-content{
    left: 5vw;
    width: 90%;
    height: 100%;
    margin-top: 3vh;
    overflow: hidden;
    position: relative;
}

.game-img{
    margin-top: 3vh;
    width: 20vw;
    position: absolute;
    left: 60vw;
    top: 50vh;
    z-index: 1000;
    border-radius: 1vw;
}
.cothe-logo{
    width: 10vw;
    position: absolute;
    bottom: 5vw;
    left: 5vw;
}