@font-face {
    font-family: will;
  src: url("/fonts/WillSansSerif-Regular.ttf") format("truetype");
}
html,body {
    background-color: black;
    background-image: url(/images/bg1.jp);
    background-size: 900px;
    background-position: center;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 12px;
    word-spacing: 3px;
    text-align: center;
    font-family: will;
    color: #ffffff;
}
a {
    color: #c10000;
    text-decoration: none;
    transition: 0.2s;
}
a:hover {
    color: #8e0000;
    font-style: bold;
    transition: 0.2s;
}
mark {
    background-color: #770000;
    color: white;
}

#page {
    background-color: black;
    background-position: bottom;
    min-height: 50%;
    width: 880px;
    border: 2px solid #8e0000;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.disclaimerbox {
    margin: auto;
    display: block;
    float: center;
    background-color: #1c0202;
    height: 200px;
    width: 600px;
    justify-content: center;
    padding: 10px;
}
#parent {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 2px; 
    text-align: center;
}
.child {

    height: 40px;
    width: 90px;
    display: flex;
    flex-direction: column; 
    font-size: 10px;
    justify-content: center;
    text-align: center;
}
.child p {
    color: #c10000;
    margin-top: 8px;
    text-align: center;
    padding: 5px;
}
button {
    font-size:20px;
    font-family: will;
    color: white;
    background-color:black;
    transition: 0.2s;
}
button:hover {
    background-color:white;
    color: red;
    border: 2px solid #8e0000;
}





.blink {
  animation: blink 4s infinite;
    transition: 0.6s;
}

@keyframes blink {
  from { opacity: 1; }
  50% { opacity: 0; }
  to { opacity: 1; }
}