body {
    color: red;
    background-color: black;

}

.banner {
    padding: 0 20px;
    display: block;
    text-align: center;
}

.banner_text {
    display: inline-block;
    font-size: 3vw;
    color: white;
    text-decoration: underline;
}

.banner_image {
    display: inline-block;
    height: 150px;
    width: 150px;
    margin: 0;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 3px;

}
.mainrow {
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    margin: 3px;
    margin-top: 40px;
    justify-content: center;

}
/* .halfcol {
    display: flex;
    flex-direction: column;
    height: 50%;
    width: 100%;
    box-shadow: 0 0 40px darkred;
    border: red 2px solid;
    border-radius: 20px;
} */

.maincol {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    min-width: 220px;
    max-width: 350px;
    margin:20px;
    flex: 1;
    font-family: Georgia, 'Times New Roman', Times, serif;
    box-shadow: 0 0 40px darkred;
    border: red 2px solid;
    border-radius: 20px;
}
.maincol h1{
    text-align: center;
}
.maincol a{
    text-decoration-line: none;
    margin: 2px;
}
.maincol a:hover{
    color:darkred;
    transition: color 0.2s;
}
.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

/*.centered {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    border: 6px solid red;
    background-color: black;
    padding: 10px;
    max-width: 100%;
    max-height: 100%;
}*/

img {
    max-width: 100%;
    max-height: 100%;
}

h1,
h2,
label {
    /* text-align: center; */
    color: red;
}

p {
    color: white;
}

li {
    color: red;
}

a:link,
a:visited,
a:hover,
a:active {
    color: red;
}

button {
    background-color: black;
    border: none;
    outline: none;
    color: red;
    text-decoration: red underline;
}

button:focus {
    color: darkred;
    text-decoration: darkred underline;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.timerwheel {
    width: 30px;
    display: none;
    height: 30px;
    border: 1px solid darkred;
    border-radius: 50%;
    background-image: linear-gradient(90deg, black 50%, darkred 50%);
    position: relative;
    overflow: hidden;
    margin-top: 25px;
    margin-left: 25px;
    margin-right: 25px;
}

.timerwheel:hover{
    border: 1px solid lime;
}

.timerwheel:after {
    position: absolute;
    left: 50%;
    width: 50%;
    height: 100%;
    content: "";
    background: darkred;
    transform-origin: 0 50%;
    animation: pieAniAfter var(--aneemtime) linear infinite;
}

@keyframes pieAniAfter {
    0% { transform: rotate(0deg); background: black; }
    0% { transform: rotate(0deg); background: black; }
    49.99% { transform: rotate(180deg); background: black; }
    50% { transform: rotate(0deg); background: darkred; }
    99.99% { transform: rotate(180deg); background: darkred; }
    100% { transform: rotate(0deg); background: black; }
}

.paused {
    border: 1px solid darkslategrey;
}
.paused:after{
    -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -o-animation-play-state:paused; 
    animation-play-state:paused;
}


