@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');

body {
    padding: 0;
    margin: 0;
}

*{
    font-family: "Nunito", sans-serif;
}



main {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    padding: 0px;
    margin: 0;
}


button {
    
    width: 20px;        
    height: 20px;
    border-radius: 30px;
    margin: 1px;
    border: 3px solid black;
    font-size: 50%;
    padding: 0;
    cursor: pointer;
}

@media (min-width: 100px) {
    button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

div {
    margin: 16px 0;
}

#streak{
    font-size: 100px;
    margin: 0;
}

.sticky{
    position: fixed;
    top:0;
    left: 10px;
    padding: 0;
    z-index: 100;
    width: 100px;
    background-color: rgb(196, 138, 138);
    display: flex;
    justify-content: center;
    border-radius: 100px;
}

.correct {
    background-color: rgb(47, 255, 0);
}

.incorrect {
    background-color: rgb(255, 0, 0);
}

.win-text{
    font-size: 30px;
    color:aquamarine;
}

.all-correct{
    background-color: rgb(120, 120, 120);
    /* background-image: url(images/5420160771376748314.jpg); */
    /* background-size: 100% 100%; */
    /* background-blend-mode: darken; */
}

.wrong{
    background-image: url(images/5420160771376748314.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
}