#content{
    max-width: 1000px;
    min-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 5px;
}
.contentBox{
    
    padding: 10px;
    justify-items: center;
    align-items: center;
    
}
#content img{
    width: 100%;
    height: auto;
    display: block;
}

#content img:hover{
    width: 120%;
}
            
.topImg{
    animation: imageEnter 2s;
}     
@keyframes imageEnter{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
h1{
    border-bottom: solid 2px #acffd7;
}
            
#contact{
    text-align: center;
}
a{
    text-decoration: none;
    color: #2863b4;
}