html {
    height: 100%;
}

body {
    background-color: #bedadbbb;
    height: 100vh;
    margin: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

img {
    max-width: 200px;
}

#choices {
    display: flex;
    flex-direction: row;
    gap: 15px;
}



.cards {
    display: flex;
    justify-content: center;
    object-fit: cover;
    background-color: rgb(255, 255, 255);
    width: 300px;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cards:hover {
    background-color:  #e3f2fd;

}

.cards:active {
    background-color: #90caf9;
}


#result {
    margin-top: 30px;
    width: 945px;
    height: 150px;
    background-color: #f5f5f5bb;
    border: 2px solid black;
    border-radius: 5px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

#score-txt {
    margin-left: 20px;
    font-size: large;

}

#box-2 {
    display: flex;
    justify-content: end;
    margin-right: 20px;    
}

#button-reset {
    background-color: white;
    border-radius: 2px;
}