@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-color: rgb(241, 31, 31);
    overflow: hidden;
}

.hidden {
    display: none;
}

#gravity {
    background-color: rgb(13, 13, 41);
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border: solid 3px rgb(13, 13, 41);
}

#gravity.bordered {
    border: solid 3px rgb(161, 161, 161);
}

.particle {
    border-radius: 100%;
}

.button-container {
    display: flex;
    flex-direction: row;
    z-index: 10;
    position: absolute;
    max-width: 100vw;
    width: 100vw;
    align-items: top;
}
.button-container.hidden {
    display: none;
}

button {
    cursor: pointer;
    background-color: aqua;
}

.button-container > button {
    padding: 5px;
    margin: 5px;
    min-width: 50px;
    height: 30px;
    border: 0px;
    border-radius: 2px;
}

.button-container > .additional-options-container {
    margin-left: auto;
    justify-content: left;
    align-items: left;
    width: 200px;
}

button.tirtiary {
    border: none;
    background: none;
    color: aqua;
    margin: 0;
    text-decoration: underline;
}

.input-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
}
.input-group.hidden {
    display: none;
}

.vertical {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

label {
    color: #ffffff;
}

.hidden {
    display: none;
}
