h1 {
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: rgba(158,0,0,1);
    color: #fff;
    padding: 2em 1em;
}

.container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 15px rgba(158,0,0,1);
    -moz-box-shadow: 0px 0px 10px 15px rgba(158,0,0,1);
    box-shadow: 0px 0px 10px 15px rgba(158,0,0,1);
}

main {
    margin: 0 auto;
    padding: 1em;
    background-color: rgba(22, 48, 45, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    width: 100%;
    min-height: 400px;
}

label {
    display: block;
    margin-bottom: 0.5em;
}

input, textarea, select {
    display: block;
    width: 100%;
    padding: 0.5em;
    margin-bottom: 0.5em;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 24px;
}

input[type=checkbox], input[type=radio] {
    width: auto;
}

.button {
    background-color: rgba(158,0,0,1);
    color: #fff;
    padding: 0.5em 1em;
    border: none;
    border-radius: 2px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
}

.section-quiz, .section-randomname {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.hidden {
    display: none !important;
}

.checkbox-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}