h1 {
    text-align: center;
    font-size: 1em;
    color: #f70100;
    /* font-family: Speeday-Bold; */
}

table{
    border-collapse: collapse;
    border-spacing: 1px;
}
td {
    border: 1px solid #e5e5e5;
    padding: 5px;    
}

form {
    text-align: center;
}

#positions{
    display: inline;
}

#charts{
    position: relative;
    width: 50em;
    height: 40em;
}

footer{
    text-align: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.row {
    display: flex;
    gap: .5em;
    justify-content: center;
}



@font-face {
    font-family: Speeday-Regular;
    src: url(FORCE%20BATTLE.otf);
}

@font-face {
    font-family: Speeday-Bold;
    src: url(Speeday-Bold-FFP.ttf);
}

.twoDigits {
    width: 2.5em;
}

canvas{
    width: 20em;
    height: 20em;
}

.settings {
    /* font-family: Speeday-Regular; */
    /* height: 1ch; */
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 1.133em;
}
  
/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: .8em;
    width: .8em;
    left: 0.133em;
    bottom: 0.133em;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #f70100;
}

input:focus + .slider {
    box-shadow: 0 0 1px #f70100;
}

input:checked + .slider:before {
    -webkit-transform: translateX(.8em);
    -ms-transform: translateX(.8em);
    transform: translateX(.8em);
}

/* Rounded sliders */
.slider.round {
    border-radius: 1.33em;
}

.slider.round:before {
    border-radius: 50%;
}