#content{
    max-width: 1000px;
    min-width: 800px;
    margin: auto;
    top: 250px;
    display: grid;
    grid-template-columns: 49.5% 49.5%;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 120%;
}
.box {
    padding: 10px;
    display: flex;
    justify-content: center;
}
     
            
th, td{
    border: solid 2px #2863b4;
    padding: 5px;
}

table{
    border: 2px, solid, #2863b4;
    margin-top: 10px;
}

.imageGrid {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    justify-items: center;
    align-items: center;
}

.imageGrid img {
    width: 80%;
    height: auto;
    display: block;
}
            
.imageGrid img:hover{
    width: 100%
}