body{
    height:97vh;
    font-family: 'Rubik', sans-serif;
    background-color: #f2f2f2;
    margin:0;
}
a,a:hover,a:focus{
    text-decoration:none;
}

.display{
    display: block;
    color:#00396D;
    border:15px solid transparent;
    transition:.3s;
    border-radius: 3px;
}

.display:hover, .display:focus{
    background-color: #00396D;
    color:#f2f2f2;
}

.display img{
    max-width:100%;
    height:auto;
    
}

.content-images{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-logo{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.content-logo img{
    max-width:400px;
}

@media screen and (min-width:576px){
    .content-images{
        flex-direction: row;
    }
}