body {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e5e5e5;
}

.card-container h3 {
    color: #fff;
    font-weight: bold;
    font-family: Verdana, sans-serif;
    font-size: 2em;
    margin-top: 2rem;
    margin-bottom: 0;
}

.main-container {
    background-color: #1B244A;
    display: flex;
    flex-direction: column;
    align-content: center;
    min-width: 400px;
    width: 70%;
    gap: 1.5em;
}

.card-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.score-container {
    display: flex;
    justify-content: space-around;
    align-content: center;
}

.score {
    font-family: 'Cursed Timer ULiL', sans-serif;
    font-size: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #080001;
    color: #F94F6D;
    height: 1.5em;
    margin: 1.1rem 0;
    border-radius: 5px;
}

.score-button {
    background: none;
    border: 2px solid #9AABD8;
    border-radius: 5px;
    color: #9AABD8;
    height: 45px;
    width: 45px;
    font-family: 'Cursed Timer ULiL', sans-serif;
}

.new-game {
    background-color: #61D365;
    font-family: 'Cursed Timer ULiL', sans-serif;
    border: none;
    font-size: 1.2rem;
    padding: .3rem;
}