body {
    padding-top: 10vh;
    padding-bottom: 10vh;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #1B244A;
}

.container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.card {
    display: flex;
    flex-direction: column;
}

.header {
    font-size: 40px;
    color: white;
    text-align: center;
    margin: 0%;
}

.score {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    gap: 20px;
}

.total {
    font-size: 100px;
    text-align: center;
    background-color: black;
    color: red;
}

.increase {
    display: flex;
    gap: 10px;
}

.add {
    background-color: transparent;
    border: solid white 1px;
    color: white;
    border-radius: 15%;
    padding-top: 5px;
    padding-bottom: 5px;
}