* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body {
    min-height: 100vh;
    padding: 1rem;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
}

.screen {
    display: none;
    padding: 2rem;
    text-align: center;
}

.screen.active {
    display: block;
}

#start-screen h1 {
    color: #e86a33;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

#start-screen p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#start-btn {
    background-color: #e86a33;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    cursor: pointer;
}

#start-btn:hover {
    background-color: #d35400;
}

.quiz-header {
    margin-bottom: 2rem
}

.question-text {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;

}

.quiz-info {
    display: flex;
    justify-content: space-between;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 25px;
}

.answer-btn {
    background-color: #f8f9e5;
    color: #333;
    border: 2px solid #eadbc8;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    text-align: left;
}

.answer-btn:hover {
    background-color: #e86a33;
    color: white;
    border-color: #e86a33;
}

.answer-btn.correct {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
}

.answer-btn.incorrect {
    background-color: #f44336;
    color: white;
    border-color: #f44336;
}

.progress-bar {
    height: 10px;
    background-color: #f8f9e5;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}
.progress {
    height: 100%;
    background-color: #e86a33;
    width: 0;
    transition: width 0.3s ease;
}

.result-info {
    margin-bottom: 30px;
}

.result-info h1 {
    color: #e86a33;
    font-size: 2rem;
    margin-bottom: 10px;
}

.result-info p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#restart-btn {
    background-color: #e86a33;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    cursor: pointer;
}