.history-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.heading {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
}

.heading h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    margin-top: 70px;
}

.heading h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: hsl(263, 58%, 44%);
}

.heading p, #image-section p {
    font-size: 18px;
    color: rgb(163, 163, 163);
    margin-bottom: 35px;
}

#image-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
}

.image-group {
    width: 300px;
    height: 300px;
    padding-top: 0;
    position: relative;
    border-radius: 5px;
    margin-top: 0px;

    background-color: rgba(0,0,0,0.1);
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    overflow: hidden;
}

.image-group img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translate(-50%, -50%);
}
#image-loader {
    color: white;
    font-size: 64px;
    position: absolute;
    top: 100%;
    left: 47.5%;
    display: none;
}
