#settings-button {
    z-index: 999998; /* TODO: do this better */
    position: absolute;
    top:  10px;
    right:  70px;
    background:  rgba(255, 255, 255, 0.2);
    border:  0;
    width:  50px;
    height:  50px;
    border-radius: 50%;
    box-sizing: border-box;
    transition:  transform .3s;
    cursor:  pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Settings{
    height: 90%;
    width: 40%;
    padding: 10%;
    zoom: 2;
}

.SettingOverlay{
    z-index: 99999;
    display: flex;
    flex-wrap: wrap;
    top: 5%;
    left: 5%;
    position: absolute;
    justify-self: center;
    width: 90%;
    height: 90%;
    background-image: linear-gradient(to bottom left, rgb(82, 82, 83), rgb(103, 103, 103));
    border-radius: 20px;
}