body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.quiz-container {
    width: 90%;
    max-width: 700px;
    margin: 200px auto;
    background: #cfcece;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

h1 {
    color: #ff4444;
}

button {
    background-color: #ff4444;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    text-decoration: none;
}    

button:hover {
    background-color: #cc0000;
}

.quiz-question {
    margin: 20px 0;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-options button {
    display: block;
    width: 50%;
    background-color: #a8a8a8;
    padding: 10px;
    margin: 5px auto;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.quiz-options button:hover {
    background-color: #555;
}

.correct {
    background-color: #4caf50 !important;
}

.incorrect {
    background-color: #f44336 !important;
}

#result {
    font-size: 20px;
    margin-top: 20px;
    font-weight: bold;
}

#restart {
    display: block;
    margin: 20px auto;
}

.center-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 10px;
}

a {
    text-decoration: none;
    color: white;
    
}


.footer {
    background-color: #e5e5e5;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.img {
    width: 10%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    width: calc(100% + 10px);
}

.navbar img {
    height: 50px;
    margin-right: 20px;
    
}

.navbar-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}


.navbar a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
    font-size: 22px;
    font-weight: bold;
}

.navbar-links {
    text-decoration: none;
    color: black;
    font-size: 14px;
    margin-right: 210px;
    gap: 40px;
}
.s {
    width: 100%;
    margin-bottom: 10px;
    object-fit: cover;
}