body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url('background.png');
    color: black;
    padding: 0;
    margin: 0;
}

.title {
    font-size: 60px;
    font-weight: 999;
}

.table {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.blank {
    visibility: hidden;
}

.p1 {
    border: 1px #313131 solid;
    display: grid;
    border-radius: 15px;
    padding: 10px;
}

.p2 {
    border: 1px #313131 solid;
    display: grid;
    border-radius: 15px;
    padding: 10px;
}

.bonus1 {
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: center;
}

.count1 {
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: center;
}

.bonus2 {
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: center;
}

.count2 {
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: center;
}

.playertitle {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    background: none;
    border: none;
    border-radius: 15px;
    transition: 0.2s ease-out;
}

.playertitle:hover {
    background-color: rgba(255,255,255,0.455);
    border: 1px solid black;
}

.submit {
    background-color: rgba(19, 225, 132, 0.625);
    font-size: x-large;
    border-radius: 15px;
    transition: 0.2s ease-out;
    border: none;
}

.submit:hover {
    background-color: rgba(19, 225, 132, 1);
    font-size: xx-large;
}

.cat {
    font-size: large;
    font-weight: bold;
}

.total {
    font-size: xx-large;
    font-weight: 1000;
}

.count2 {
    display: flex;
    flex-direction: row;
    padding: 10px;
}

.num {
    text-align: center;
    background-color: rgb(25, 101, 233);
    color: white;
    border-radius: 15px;
    border: none;
    transition: 0.2s;
}

.num:focus {
    font-size: large;
}

.color {
    width: min-content;
    background-color: rgba(255,255,255,0.5);
    border: none;
    border-radius: 15px;
    transition: 0.2s ease-out;
    color: black;
}

.color:hover {
    background-color: rgba(255,255,255,0.75);
}

.reset {
    background-color: rgb(240, 12, 12);
    color: white;
    font-size: 25pt;
    border: none;
    border-radius: 15px;
    transition: 0.2s;
}

.reset:hover {
    background-color: white;
    color: black;
    font-size: 45pt;
}

.resetduring {
    display: none;
}

.cookie {
    font-size: larger;
    color: white;
    font-weight: 999;
}

.warning {
    color: white;
    font-weight: 999;
}

.explain {
    color: white;
    font-size: small;
    font-weight: 999;
}

.cookiewarning {
    background-color: #323232;
    justify-content: center;
    border-radius: 0 0 15 15;
}

.cookieicon {
    color: rgb(165, 99, 42);
}

.accept {
    background-color: rgb(208, 255, 0);
    font-size: large;
    border-radius: 15px;
    border: none;
    color: black;
    transition: 0.2s ease-out;
}

.accept:hover {
    background-color: rgb(0, 98, 255);
    color: white;
    font-size: x-large;
}