html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #1d3389;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

footer {
    text-align: center;
    color: lightgray;
    font-size: medium;
    padding: 50px;
}

main {
    flex: 1 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
}

img {
    max-width: 50%;
    display: block;
    margin: auto;
}

/* The hero image */
.hero-image {
    background-image: url(../images/hero/web-code-filtered-blue-1.png);
    background-size: cover;
    height: 50vh;

    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Place text in the middle of the image */
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: lightgray;
}

.hero-text > h1 {
    font-size: 1.5rem;
}

.highlight {
    border-radius: 0.3em;
    /* background-image: linear-gradient(
        -100deg,
        rgba(138, 101, 30, 0.5),
        rgba(138, 101, 30, 0.9),
        rgba(138, 101, 30, 0.4) */
     background-color: #1d3389; 
     padding: 5%;  
    );
}

footer {
    flex-shrink: 0;
    background-color: #89651d;
    background-size: cover;
    padding: 5px
}
