body{
    display: flex;
    background-image: url(./img/bg.avif);
}

canvas{
    border: solid rgb(72, 72, 72);
}

#GUI{
    width: 350px;
    z-index: -1;
}

div{
    height: 350px;
    display: flex;
    flex-wrap: wrap;
}

#Oxygen{
    position: absolute;
    top: 140px;
    left: 1080px;
    height: 160px;
    width: 50px;
    background-color: aqua;
}

#SyreTank{
    position: absolute;
    left: 1020px;
    top: 130px;
    height: 180px;
    z-index: 1;
}

#Fov{
    height: 40px;
}

#MoveSpeed{
    height: 40px;
}

#ToggleHardmode{
    margin-left: 100px;
    height: 30px;
}

#Stats{
    color: white;
    position: relative;
    left: -210px;
    top: 110px;
    list-style: none;
}

.gameover{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
    width: 300px;
    height: 300px;
    position: absolute;
    left: 350px;
    top: 200px;
    
    z-index: 2;
    background-color: red;
}

.gameover button{
    width: auto;
    height: auto;
    
}

.upgrade{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 300px;
    height: 300px;
    position: absolute;
    left: 350px;
    top: 200px;
    justify-content: center;
    align-content: center;

    z-index: 2;
    background-color: rgb(255, 255, 255);
}

.upgrade button{
    
    height: auto;
    width: auto;
    margin: 10px;
}

