body + html {
    margin: 0;
    padding: 0px;
    color: #fff;
}

body {
    background-image: url("bg.png");
}

.burger {
    background-color: rgba(0, 0, 0, 0%);
    border: none;
    position: absolute;
    top: 75px;
}

.upgrades {
    width: 100vw;
    background-color: #aaf;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow-x: scroll;
}

button {
    transform: translateY(0px);
    transition: 1s;
}

button:hover {
    transform: translateY(-5px);
}

h1 {
   transform: translateY(0px);
    transition: 1s; 
    width: 500px;
}

h1:hover {
    transform: translateY(-10px);
}

#name {
    position: absolute;
    top: 25px;
    width: 45vw;
    height: 5vh;
    background-color: rgba(255, 255, 255, 50%);
    border-radius: 2.5vh;
}

#rebirth {
    position: absolute;
    top: 50px;
    right: 50px;
}

#reset {
    position: absolute;
    top: 100px;
    right: 50px;
}

#superRebirth {
    position: absolute;
    top: 100px;
    right: 50px;
}

.statsContainer {
    position: absolute;
    left: 300px;
    top: calc(5vh + 50px);
color: #fff;
}