@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;400;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family:  'Nunito Sans', sans-serif;
    margin: 0;
    padding: 0;
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(243, 242, 234);
}

ul {
    list-style:  none;
    margin-top: 1rem;

}

#card {
    background-color: rgb(171, 231, 231);
    max-width: 500px;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px grey;
    text-align: center;
    
}
button {
    border-radius: 5px;
    font-size: 2rem;
    width:  100%;
    padding: 1rem;
    background-color:rgb(84, 238, 238) ;
}

button:hover{
    background-color: rgb(145, 211, 211);
    cursor: pointer;
}
h2,h3 {
    text-align: center;
    margin: 0;
}

input[type=radio] {
    width: 1.7rem;
    height: 1.7rem;
}

label {
    margin-right: 7rem;
}

.number {
    margin-right: 5rem;
    border: 1px solid black;
    border-radius: 50%;
    text-align: center;
    padding: .3rem;
    font-size: 1rem;
    margin-bottom: .5rem;
    box-shadow: 0 0 10px black;
}

.wrong {
    background-color: lightcoral;
}

.wright {
    background-color: greenyellow;
}

@media screen and (max-width: 800px) {
    label {
        margin-right: 1rem;
        font-size: 2rem;
    }

    .number {
        margin-right: .5rem;
        font-size: 1.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    #card {
        max-width: 300px;
    }

  }
