body {
    min-height: 100vh;
    background-image: linear-gradient(to bottom, rgb(252, 253, 192), #ffbb0e);
    min-width: 610px;
}

header {
    text-align: center;
}

h1 {
    margin-bottom: 0;
    font-size: 2.5em;
}

hr {
    border-style: solid;
    width: 60%;
}

h2{
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

form * {
    margin: 0 auto;
    font-size: 1.24em;
}

label {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 25%;
}

label input {
    width: 100%;
    border-style: solid;
    border-radius: 12px;
    border-color: black;
    border-width: 4px;
}

label input:hover,
#submitinfo:hover, input[type="submit"]:hover {
    border-color: rgb(219, 110, 93);
}

#submitinfo:active, input[type="submit"]:active {
    background-color: rgb(179, 40, 5);
    color: white;
    font-weight: bold;
}

#submitinfo, input[type="submit"]{
    padding: 10px 10px;
    margin-top: 15px;
    font-size: 1.5em;
    border-style: solid;
    border-radius: 12px;
    border-color: black;
    border-width: 4px;
}

#passwordMessage {
    margin-top: 30px;
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
}

a {
    text-align: center;
    margin: 15px auto 10px;
    display: block;
    width: 10%;
    font-size: 1.5em;
    text-decoration: none;
    padding: 7px;
    border-radius: 30px;
    background-color: rgb(219, 110, 93);
    color: black;
}

a:visited,
.smallbox button:visited {
    color: rgb(89, 56, 0);
}

a:hover,
.smallbox button:hover {
    background-color: rgb(255, 223, 192);
    transition: .1s;
}

a:active,
.smallbox button:active {
    color: rgb(255, 255, 255);
}

table {
    margin: auto;
    font-size: 1.5em;
}

.questionfield label {
    width: 40vh;
}

form[action="process_game.php"] > label{
    font-size: 3em;
}

.questionfield {
    margin: auto;

}

form .questionfield input[type="radio"] {
    width: 40%;
    height: 20px;
    width: 20px;
}

#resultdata{
    text-align: center;
    font-size: 1.5em;
}