body {
    background: #FFF;
    font-family: "Poppins", sans-serif;
    margin: 0 auto;
}

#container {
    width: 100%;
    height: 100%;
    background: #FFF;
}

@media screen and (min-width: 600px) {
    #container {
        box-shadow: 0px 0px 0px 11px #1f1f1f, 0px 0px 0px 13px #191919, 0px 0px 0px 20px #111;
        margin: 40px auto;
        border-radius: 40px;
        max-width: 390px;
        max-height: 844px;
        height: 844px;
    }

    body {
        background-image: url("img/attentie-attentie-ig7vN6OkGNE-unsplash.jpg");
    }

    #titlebar {
        border-top-right-radius: 40px;
        border-top-left-radius: 40px;
    }
}

#titlebar {
    width: 100%;
    min-height: 50px;
    background: #456EFE;
    display: flex;
    align-items: center;
}

#titlebar h1 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 auto;
}

#rounds {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    align-items: center;
    margin: 12px 0 0 0;
}

#rounds h2 {

    color: #23303B;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
}

.round-number {

    color: #23303B;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    margin-top: -20px;
}

#boxer-cards {
    display: flex;
    column-gap: 5%;
    justify-content: center;
}

.boxer-card {
    background: rgba(164, 169, 174, 0.15);
    width: 45%;
    column-gap: 10px;
    border-radius: 20px;
}

.boxer-photo {
    width: 75px;
    height: 75px;
    border: 1px solid #FFF;
    border-radius: 75px;
    border: 2px solid #F4F6FC;
    margin: 0 auto;
    margin-top: -40px;
}

.fury {
    background: url(img/fury.jpg);
    background-size: cover;
}

.usyk {
    background: url(img/usyk.jpg);
    background-size: cover;
}

#boxer-name {

    text-transform: uppercase;
    text-align: center;
    color: #23303B;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
}

.boxer-score {
    background-color: rgba(255, 99, 99, 0.08);
    color: #FF6363;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    border-radius: 10px;
    margin: 0 10px;
}

.tenpoints {
    background-color: #20BB67;
    color: #FFF;
}

.ninepoints {
    background: #456EFE;
    color: #FFF;
}

.eightpoints {
    background: #FE8845;
    color: #FFF;
}

.sevenpoints {
    background: #FE7145;
    color: #FFF;
}

.sixpoints {
    background: #FE5045;
    color: #FFF;
}

.score-button:disabled {
    background: #6b6b6b;
}

.score-button.high {
    border-radius: 10px;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    border: 0;
    margin: 10px 10px 0 10px;
    width: calc(100% - 20px);
    text-align: center;
    padding: 8px;
}

.low-score-buttons {
    display: flex;
    justify-content: space-between;
    margin: 10px;
}

.score-button.low {
    width: 30%;
    padding: 8px;
    border-radius: 10px;
    column-gap: 10px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    border: 0;
    text-align: center;
}

.win {
    color: #1AA97E;
    background-color: #1AA97E1F;
}

.lose {
    background-color: rgba(255, 99, 99, 0.08);
    color: #FF6363;
}

.reset,
.next {
    border-radius: 10px;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    border: 0;
    margin: 10px 10px 0 10px;
    width: calc(100% - 20px);
    text-align: center;
    padding: 8px;
}

.imatp {
    font-size: 8px;
    margin: 30px 0 0 0;
    text-align: center;
    line-height: 6px;
    color: #6b6b6b;
}

#scorecard {
    max-width: 100%;
    margin: 20px 0;
    font-size: 10px;
    margin: 10px 10px 10px 10px;
    overflow: hidden;
    z-index: -1;
    height: 100px;
}

table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}

th {
    background: #ccc;
}

th,
td {
    border: 1px solid #ccc;
    text-align: center;
}

tr:nth-child(even) {
    background: #efefef;
}

tr:hover {
    background: #d1d1d1;
}