* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    height: 50px;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    line-height: 50px;
    background: whitesmoke;
    font-size: 18px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: #e54b4b;
}

li:hover {
    animation: colors 2s ease-out;
}

li {
    padding: 0 40px;
}

@keyframes colors {
    0% {background-color: tomato;
    }
    40% {background-color: #CC0000;
    }
    60% {background-color: #CC0000;
    }
    100% {background-color: tomato;
    }
}

.container {
    display: flex;
    list-style-type: none;
    line-height: 30px;
    background: whitesmoke;
    font-weight: 400;
    font-size: 12px;
    justify-content: center;
    font-family: 'Libre Baskerville', serif;
}

.caption {
    font-family: 'Libre Baskerville', serif;
        color: #536079;
        font-size: 12px;
        font-weight: 400;
        font-style: italic;
        line-height: 16px;
        background: whitesmoke;
}

img {
    width: 100%;
    height: 600px; 
    margin-top: 26px;
    margin-bottom: 10px;   
}
      .column {
      width: 100%;
      height: 300px;
      background: #F5CF55;
      padding-top: 50px;
      padding-left: 500px;
      padding-right: 500px;
      padding-bottom: 70px;
    }

    body {
        font-family: 'Libre Franklin', sans-serif;
        color: #536079;
        font-size: 12px;
        font-weight: 400;
    }