* {
    font-family: Arial, Helvetica, sans-serif;
}

/*Settings stuff*/
.setting {
    float: left;
    margin-left: 5px;
}

.settings-row {
    height: 5vh;
    width: 100%;
    min-height: 75px;
    margin-bottom: 10px;
}
.dropdown:hover * {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
}

.dropdown-content:hover {
    display: block;
}

#game-choice {
    border: 3px solid black;
}

.selected {
    display: block;
}

.unselected {
    display: none;
}

/*Buttons*/
.button {
    border: 3px solid black;
    background-color: gray;
    cursor: pointer;
    text-align: center;
}

.button:hover {
    background-color: white; 
}

.control-input {
    width: 60px;
    height: 30px;
}

/*Popup*/
.popup-container {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.popup {
    margin: 0 auto;
    margin-top: 300px;
    width: 50%;
    border: 3px solid black;
    padding: 10px;
    background: rgba(255, 255, 255, 1);
}