html, body {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 440px;
    height: 100%;
    background-color: #DFD4BA;

}
.img-dragon{
    width: 100% ;
}
.answer-containter {
    width: inherit;
    display: flex;
    justify-content: center;
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
    margin-top: 30px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

input[type="text"] {
    width: 280px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px 0px 0px 10px;
}

.answer-button{
    background-color: #5F1A1F;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 70px;
    height: 40px;
    border-radius: 0px 10px 10px 0px;
}

.answer-button:hover {
    background-color: #352223;
}

.nav-button{
    background-color: #5F1A1F;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 200px;
    height: 25px;
    border-radius: 10px 10px 10px 10px;
    margin: 10px;
}

.nav-button:hover {
    background-color: #352223;
}

p {
    font-weight: bold;
    margin-top: 10px;
}

.video {
    display: none;
    margin-top: 20px;
}

.text{
    margin: 0 auto; /* Centrování obsahu */
    text-align:justify; /* Centrování textu (volitelné) */
    font-family: Arial, sans-serif;
    padding: 25px;
    
}
.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #29ad29;
    /* Zelená barva pro dokončené kolo */
    /* Zakázat kliknutí po dokončení */
    border: solid 3px #128d12;
}


/* Styl pro menší obrazovky (např. mobilní telefony) */
@media (max-width: 768px) {
    .card {
        width: 90%;
        /* Šířka karty na menších obrazovkách */
    }
}

/* Styl pro střední a větší obrazovky (např. tablety a desktopy) */
@media (min-width: 769px) {
    .card {
        margin: 0 10px;
        /* Odstup mezi kartami na širších obrazovkách */
    }
}