html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-color: #121314;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: monospace;
}
button {
    border: none;
    border-radius: 0.2vw;
}
.header {
    font-size: 4em;
    font-weight: bolder;
}
.subhead {
    font-size: 1.5em;
    font-weight: bold;
    padding-bottom: 1vh;
}
.staterow {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 10vw;
    width: 100%;
    padding-bottom: 2vh;
}
.lockbox {
    margin-bottom: 2vh;
}
.response {
    display: flex;
    border: 1px solid #fff;
    border-radius: 0.2vw;
    padding: 1vh;
    width: 30%;
    height: 30%;
    margin-bottom: 2vh;
}
.slidecontainer {
    display: flex;
    justify-content: center;
    margin-bottom: 2vh;
    width: 100%;
}
.slider {
    width: 50%;
}
.firebutton {
    background-color: red;
    font-size: 6em;
    padding: 3vw;
    border-radius: 100%;
    border: 4px solid rgb(125, 0, 0);
}