



#quiz-banner {
    height: 59vh;
    margin-bottom: 6em;
}

#quiz-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 2em;
    margin-bottom: 3em;
}

.quiz-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  
}

.quiz-card {
    background-color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 25px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;

    cursor: pointer;
    align-items: center;
}

.quiz-card:hover {
    transform: scale(1.03);
}


.quiz-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}


.quiz-details h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.quiz-details p {
    font-size: 1.1rem;
    color: #555;
    margin: 10px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}


.quiz-details i {
    font-size: 1rem;
    margin-right: 5px;
    color: #210c0c;
}

.quiz-details i:hover {
    color: #201268; 
}


.start-quiz-btn {
    background: linear-gradient(135deg, #e9e9e9c9, #ff38af, hsla(300, 68%, 43%, 0.788), #a0a0a1);
    color: #000000; 
  border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.start-quiz-btn:hover{
	background: inear-gradient(135deg, #17cc5d, #6e92a7, hsla(300, 88%, 53%, 0.836), #080cee );;
	color: rgb(0, 0, 0);
}
.start-quiz-btn:hover i {
    color: rgb(0, 0, 0); 
}

.start-quiz-btn i {
    margin-right: 5px; 
}
