html{
    color: whitesmoke;
    background-color: rgb(22, 22, 23);
}
.container{
    margin: 1em;
    border: 4px solid #2f2f32;
    border-radius: 25px;
    background-color: #2f2f32;
}
button
{
    cursor: pointer;
    font-size: larger;
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    background-color: rgb(58, 58, 61);
    border: 1px solid #3a3a3d;
    color: whitesmoke;
}
button:hover, input:hover, input[type="password"]:hover
{
    outline: 2px solid #363639;
}
button:hover
{
    background-color: #363639;
}
input[type="text"]
{
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    font-size: large;
    border: 1px solid #3a3a3d;
    background-color: #2f2f32;
    color: whitesmoke;
}
input[type="text"]:focus
{
    outline: 2px solid #363639;
}

input[type="checkbox"]:not(:checked)
{
    border: 1px solid #3a3a3d;
    padding: 1em;
    accent-color: #2f2f32;
}
input[type="checkbox"]
{
    border: 1px solid #3a3a3d;
    padding: 1em;
    accent-color: #2f2f32;
}
input[type="date"]
{
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    background-color: #2f2f32;
    color: whitesmoke;
    border: 1px solid #3a3a3d;
    font-size: large;
}
input[type="password"]
{
    font-size: large;
    color: whitesmoke;
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    background-color: #2f2f32;
    border: 1px solid #3a3a3d;
    outline: none;
}
input[type="password"]:focus
{
    
    outline: 2px solid #363639;
}
input[type="submit"]
{
    font-size: large;
    color: whitesmoke;
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    background-color: #2f2f32;
    border: 1px solid #3a3a3d;
    outline: none;
}
input[type="submit"]:hover
{
    outline: 2px solid #363639;
    cursor: pointer;
}
input[type="number"]
{
    font-size: large;
    color: whitesmoke;
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    background-color: #2f2f32;
    border: 1px solid #3a3a3d;
    outline: none;
}
input[type="number"]:hover
{
    outline: 2px solid #363639;
}
input[type="number"]:focus
{
    outline: 2px solid #363639;
}
select
{
    font-size: large;
    color: whitesmoke;
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    background-color: #2f2f32;
    border: 1px solid #3a3a3d;
    outline: none;
}
select:hover, select:focus
{
    outline: 2px solid #363639;
}
textarea
{
    font-size: large;
    color: whitesmoke;
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    background-color: #2f2f32;
    border: 1px solid #3a3a3d;
    outline: none;
}
textarea:hover, textarea:focus
{
    outline: 2px solid #363639;
}
a
{
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    font-size: large;
    color: whitesmoke;
    text-decoration: none;
    background-color: #2f2f32;
    border: 1px solid #3a3a3d;
}
a:hover
{
    outline: 2px solid #363639;
}
hr
{
    margin-left: 0;
    margin-right: 0;
    border: none;
    border-bottom: 4px solid #2f2f32;
    background-color: #2f2f32;
}
.section
{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.section hr
{
    width: 100%;
    height: 0px;
}
.section div
{
    min-width: fit-content;
    width: fit-content;
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    border: 4px solid #2f2f32;
}
.section div h3, .section div h1, .section div h4, .section div h2
{
    margin: 0;
    width: fit-content;
}
checkbox[type="not_checked"]
{
    font-size: large;
    width: 1em;height: 1em;
    padding: 0.4em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    border: 1px solid #3a3a3d;
    background-color: #2f2f32;
}
checkbox[type="checked"]
{
    cursor: pointer;
    font-size: large;
    padding: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    border: 1px solid #3a3a3d;
    background-color: #2f2f32;
}
checkbox:hover
{
    cursor: pointer;
    outline: 2px solid #363639;
}
.checkboxes
{
    position: absolute;
    top: -100em;
    left: -100em;
}