
* {
    margin: 0;
    padding: 0;
}
#historybody {
    background-image: url(assets/history.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.history {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: antiquewhite;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 20px;
}

.card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.historyhead {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.historyPara {
    font-size: 1em;
    line-height: 1.5;
}
#preloader
{
    background: white url(assets/load.webp) no-repeat center;
    background-size: 40%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}
.quiztime
{
    background-color: rgb(148, 6, 6);
    width: 120px;
    height: 40px;
    color: white;
    font-size: medium;
    border-radius: 20px;
}
.quiztime:hover{
    background-color: rgb(177, 7, 7);
    cursor: pointer;
}
@media (max-width: 992px) {
    .card{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
}