body{
    background-color: #3674B5;
    text-align: center;
}
.title{
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    margin-top: 20px;
}   
.score{
    color: #fff;
    font-size: 30px;
    margin: 20px auto;
    background-color: #1E3A5F;
    max-width: 400px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.container{
    display: grid;
    place-items: center;
    grid-template-columns: repeat(3, 1fr);
    height: 60vh;
    margin: 0 auto;
    padding: 20px;
    gap: 10px;
    max-width: 400px;
    border: none ;
    border-radius: 10px;    
    background-color: #1E3A5F;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.box{
    width: 120px;
    height: 120px;
    border: 1px solid #fff;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    text-align: center;
    line-height: 110px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.box:hover{
    background-color: #0D5EA6;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
    
}
@media (max-width: 650px) {
    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
    }
    .box {
        width: 100px;
        height: 100px;
        font-size: 40px;
        line-height: 90px;
    }
    .title {
        font-size: 30px;
    }
    .score {
        font-size: 20px;
        max-width: 300px;
    }
}