body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center; 
    color: white;
    flex-direction: column;
    background-image: url(images/bg.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 

}


.wrapper {
    display: flex;
    justify-content: space-around;
    text-align: center;
    background-color: #1B244A;
    width: 500px;
    height: 385px;
    
}
.score-details {
    margin: auto;
}

.score-card{
    display: flex;
    flex-direction: column;
    background-color: #080001;
    font-size: 120px;
    color: #F94F6D;
    font-family: 'Cursed Timer ULiL', sans-serif;
    padding: 10px;
    margin-bottom: 20px;


} 

button {
    font-family: 'Cursed Timer ULiL', sans-serif;
    font-size: 20px;
    padding: 10px;
    color: #9AABD8;
    border: 2px solid #9AABD8;
    background: none;
    margin: 0px 2px;
    border-radius: 5px;
}

h3 {
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}

button:hover {
    background-color: #ffff;
}

#btn-restart {
    margin-top: 20px;
    background-color: #1B244A;
}

#btn-restart:hover {
    color: #F94F6D;
    background-color: #080001;
}