.quiz-wrapper {
    background-image: url("https://t4.ftcdn.net/jpg/03/02/38/91/360_F_302389139_jjnxx4xuOAMSe0cVKVgCU1kTG2daGVsp.jpg");
    padding: 30px;
    border: 4px solid #87641c;
    /*border-radius: 15px;*/

    max-height: 800px; /* controls height */
    overflow-y: auto; /* enables vertical scroll */
    
}
.quiz-title {
    text-align: center;
    background: #a59ac0;
    color: white;
    padding: 10px;
    border-radius: 10px;
    font-family: "Comic Sans MS", cursive;
    letter-spacing: 2px;
}

.quiz-grid {
    display: grid;
    gap: 20px;
    margin-top: 5px;
}
.quiz-card {
    background: white;
    border: 3px solid #82709c;
    /*border-radius: 12px;*/
    overflow: hidden;
    box-shadow: 4px 4px  #5b4184;
    transition: transform 0.2s ease;
}

.quiz-card:hover {
    transform: scale(1.03);
}

.quiz-card img {
    width: 100%;
    height: auto;
    display: block;
    /*border-radius: 12px;*/
}

.card-text {
    padding: 10px;
    font-size: 14px;
}
.quiz-wrapper::-webkit-scrollbar {
    width: 10px;
}

.quiz-wrapper::-webkit-scrollbar-track {
    background: #c1b5cf;
    border-radius: 10px;
}

.quiz-wrapper::-webkit-scrollbar-thumb {
    background: #82709c;
    border-radius: 10px;
}

.quiz-wrapper::-webkit-scrollbar-thumb:hover {
    background: #4b2c61;
}
