/* add CooperHewitt-Bold.ttf and CooperHewitt-Medium.ttf to the same directory as this CSS file */
@font-face {
    font-family: 'Cooper Hewitt';
    src: url('CooperHewitt-Bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'Cooper Hewitt';
    src: url('CooperHewitt-Medium.ttf') format('truetype');
    font-weight: normal;
}

*{
    font-family: 'Cooper Hewitt', sans-serif;
}
body {
    text-align: center;
    background-color: #ffcaba;
}
.counter-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #84001a;
    padding: 40px;
    min-width: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.207);
    display: inline-block;
    color: white;
}
.count-display {
    font-size: 4.5em;
    font-weight: bold;
    color: white;
    margin: 20px 0;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 4px solid rgba(255,255,255,.5);

}



.logo {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}
button {
    font-size: 1.2em;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #84001a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

select{
    font-size: 1.2em;
    padding: 10px 20px;
    background-color: transparent;
    border: 4px solid #ffffff;
    border-radius: 8px;
    color: white;
    margin-bottom: 20px;
}
select option {
    background-color: #84001a;
    color: white;
}
button:hover {
    background-color: #ff004c;
    color: white;
}

table {
    text-align: center;
    max-height: 60vh;
    overflow-y: scroll;

}