﻿
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.ImagePage {
    width: 100%;
    height: auto;
    background-color: #F7FBFD;
    padding: 30px;
    
}
.ImagePage .ImageContent {
    width: 100%;
    height: auto;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap:20px;
    padding-bottom:20px;
}
.ImagePage .ImageContent img{
    max-width:100%;
}
.ImagePage .ImageContent ol{
    text-align:center;
}