body {
    font-family: Nunito, sans-serif;
  background-color: rgb(10, 25, 41);
  --ck-color-base-border: #0A1929;

  color: rgb(255, 255, 255);
   
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1201;
    height: 48px;
    background-color: rgba(10, 25, 41, 0.1);
    backdrop-filter: blur(10px);
    
    line-height: 48px;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help img {
    height: 80%;
    width: 80%;
    position: absolute;
    left: 28%;
    top: 10%;
}

.fa-question-circle {
    color: #fff;
    transform: scale(2);
    position: absolute;
    left: 25%;
    top: 25%;
}

.help {
    background-color: #0A1929;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    position: relative;
    transition: 0.5s;
}

a {
    text-decoration: none;
}

.help:hover {
    transform: scale(1.2);
}

#cards {
    display: flex;
    flex-wrap: wrap;
    overflow: auto;
    justify-content: center;
    column-gap: 32px;
}

.card-container {
    border-radius: 12px; /* скругленные углы */
    padding: 0; /* отступы внутри карточки */
    margin-bottom: 10px; /* отступ снизу между карточками */
    width: 300px; /* максимальная ширина карточки */
    box-sizing: border-box; /* чтобы padding не увеличивал размеры карточки */

    background-color: rgb(10, 25, 41);
    color: rgb(255, 255, 255);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border: 1px solid rgba(255, 255, 255, 0.12);

    width: 350px;
    height: 400px;

}

.card-image {
    max-width: 100%; /* изображение не должно выходить за границы карточки */
    height: auto; /* автоматическая высота для сохранения пропорций */
    display: block; /* чтобы изображение не имело отступы снаружи */
    margin-bottom: 5px; /* отступ снизу между изображением и текстом */

    border-radius: 12px 12px 0 0;
}

.card-caption {
    margin: 0; /* убираем внешние отступы у текста */

    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    font-family: Nunito, sans-serif;
    color: rgba(255, 255, 255, 0.7);
    padding: 16px;
}

#question {
    display: flex;
    overflow: auto;
    align-items: center;
    column-gap: 16px;

    width: 100%;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 0;
    margin-top: 64px;
    margin-bottom: 16px;
}

.question-image {
    width: 750px;
    max-height: 100%;
}

.question-title {
    margin: 0px;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.334;
    letter-spacing: 0em;
    font-family: Nunito, sans-serif;
    color: #ffffffd9;
}

.question-caption {
    margin: 0px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    font-family: Nunito, sans-serif;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 576px) {
    #question { 
        width: 100%;
        flex-wrap: wrap;
        
        height: auto;
     }
    .question-image {
        width: 90%;
        margin:auto;
        margin-bottom: 8px;
    }
    #question > div {
        width: 90%;
        margin: auto;
    }
    
}