html {
    font-family: 'Righteous', cursive;
    font-size: 20px;
}

body {
    background-image: url("../img/background.png");  /* source: https://pixabay.com/de/vectors/koi-muster-japanisch-hintergrund-3303950/ */
    padding-left: 8%;
    padding-right: 8%;
}

h1 {
    font-size: 80px;
    background-color: beige;
    padding: 25px;
    border-radius: 15px;
    border-color: black;
    border: solid;
    opacity: 0.9;
}

h2 {
    background-color: beige;
    opacity: 0.9;
    border-radius: 15px;
    border: solid;
    padding: 40px;
}

h3 {
    font-size: 30px;
}

th,
td {
    min-width: 80px;
    text-align: center;
}

.content-box-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 100%;
    padding-bottom: 80px;
}

.ranking,
.picks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.ranking > * {
    flex: 1;
}

.ranking-tile {
    color: beige;
    max-width: 25%;
    min-width: 20%;
    border: solid;
    border-radius: 15px;
    padding: 40px;
    background-color: #bd4646;
    opacity: 0.9;
    list-style-type: none;
    font-size: 20px;
}

.content-box-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: beige;
    border-radius: 15px;
    border: solid;
    padding: 50px;
    opacity: 0.9;
    max-width: 50%;
    margin: auto;
}

.picks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}

.picks > td {
    color: beige;
    background-color: #bd4646;
    width: 25%;
    text-align: center;
    border-radius: 15px;
    border: solid;
    font-size: 25px;
}

.countdown {
    font-size: 100px;
    height: 120px;
    text-shadow: 4px 3px 0 beige;
}

.history th td {
    margin-right: 15px;
    margin-left: 15px;
}

.fill {
    align-self: center;
    font-size: 20px;
    font-weight: 200;
    font-family: 'Righteous', cursive;
    letter-spacing: 1px;
    padding: 13px 50px 13px;
    margin-top: 15px;
    outline: 0;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
}

.fill::after {
    content: "";
    background-color: #e9a4ab;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
    opacity: 0.9;
    border-radius: 5px;
}

.fill:hover::after {
    top: -1px;
    left: -1px;
}
