/* https://colorhunt.co/palette/0a26471442722052952c74b3 */
html,
body {
    height: 100%;
    margin: 0 0 0 0;
}

a {
    color: inherit;
    text-decoration: inherit;
    cursor: inherit;
}

.container {
    display: block;
    height: 100%;
    min-height: 99%;
    display: flex;
    flex-direction: column;
}

.box {
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-size: 36px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-1 {
    background-color: #0A2647;
    color: #59a5e8;
    height: 40px;
}

.box-2 {
    background-color: #144272;
    color: #0A2647;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    align-content: space-around;
}

.box-3 {
    background-color: #0A2647;
    color: #72B095;
    height: 10px;
    align-items: flex-start;
}

.image {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    width: 28%;
    height: 300px;
    background-size: cover;
}

img {
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
}

img:hover {
    border-color: #59a5e8;
    border-style: solid;
    border-width: 5px;
    margin: -5px;
}