body {
    background-color: rgb(223, 223, 223);
    font-family: initial;
    margin: 0;
    


}

img {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
}

h1 {
    font-size: 80px;
    font-weight: 900;
}

h2 {
    font-size: 40px;
}

main {
    margin-top: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 100px;

}

button {
    width: 200px;
    height: 100px;
    border-radius: 10px;
    border-width: 1px;
    background-color: rgb(209, 228, 228);
    font-size: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.questions {
    padding-top: 20px;
    width: 1000px;
    max-width: 100%;
    background-color: rgb(194, 209, 209);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);


}

.first {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.first-otvet {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
    column-gap: 50px;

}

.modal-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}




.modal-container.show {
    opacity: 1;
    pointer-events: auto;
}


.modal {
    background-color: rgb(223, 223, 223);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    width: 800px;
    max-width: 100%;
    padding: 30px 50px;
    text-align: center;

}

.red {
    background-color: rgb(214, 64, 64);
    transition: 600ms;
    
}

.green {
    background-color: rgb(71, 175, 71);
    transition: 600ms;

}

.noclick {
    pointer-events: none;
}
