body {
    background-color: rgb(31, 2, 31);
}

.upgrade {
    width: 96%;
    height: 15%;
    background-color: rgb(31, 2, 31);
    border: 2px solid rgb(182, 166, 181);
    border-radius: 1% / 6%;
    margin: 1%;
    position: relative;
}
.upgrade img {
    width: auto;
    height: 80%;
    left: 4%;
    top: 10%;
    position: absolute;
    float: left;
}
.upgrade h1 {
    font-family: 'Merriweather', serif;
    font-size: 25px;
    color: white;
    text-align: left;
    bottom: 30%;
    left: 20%;
    position: absolute;
}
.upgrade h2 {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    color: white;
    text-align: left;
    top: 35%;
    left: 20%;
    position: absolute;
}
.upgrade p {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    color: white;
    text-align: right;
    right: 2%;
    bottom: 30%;
    width: 50%;
    position: absolute;
}
.upgrade button {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    color: white;
    background-color: rgb(19, 0, 29);
    border: 2px solid rgb(182, 166, 181);
    border-radius: 8% / 30%;

    right: 2%;
    top: 55%;
    position: absolute;
}

#clicks {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    color: white;
    text-align: center;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    width: 55%;
}

#game-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 70vh;
}

#planet {
    flex: 0.5;
    height: 100%;
    background-color: rgb(19, 0, 29);
    border: 2px solid rgb(182, 166, 181);
    border-radius: 2% / 3%;
}

#upgrades {
    flex: 0.4;
    height: 100%;
    background-color: rgb(19, 0, 29);
    border: 2px solid rgb(182, 166, 181);
    border-radius: 2% / 2.5%;
    overflow: auto;
    overflow-y: scroll;
}
#upgrades::-webkit-scrollbar{
    background: transparent;
    width: 10px;
}
#upgrades::-webkit-scrollbar-thumb {
    background-color: rgb(182, 166, 181);
    border-radius: 10px;
}

#copyright {
    list-style-type: none;
    position: fixed;
    bottom: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    border-color: white;
    border-style: solid;
}
#copyright li {
    float: left;
}
#copyright li a, #copyright li p {
    display: block;
    color: white;
    display: inline;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border-style: solid;
}