body {
    display: flex;
    background-image: url(download.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
h3  {
    text-align: center;
    font-size: 1.5em;
    text-decoration: underline;
    color: white;
}
.text {
    font-size: 1.2em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    color: white;
}
.lheader {
    color: white;
    font-size: 1.05em;
    text-decoration: underline;
    font-weight: bold;
}
.footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: rgb(255, 255, 255);
}
.list ul li{
    font-size: 1.09em;
    color: white;
}
.images img {
    display: inline;
    justify-content: center;
    align-items: center;
   margin-left: 85px;
}
.images img:hover {
    border: 3px red solid;
    outline: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 2p black;
    box-shadow: 4px 4px 4px rgb(255, 0, 0);
    transform: scale(1.05);
}
.footer p.order {
    position: relative;
    text-align: right;
    margin-right: 20px;
    font-size: 1em;
    color: rgb(60, 255, 0);
    font-style: italic;
    transform: translate(-135px,-135px);
}
.footer a{
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

/* Responsive design */

@media only screen and (max-width: 600px) {
   .footer p.order {
        font-size: 0.9em;
    }
   .footer a {
        margin-left: 5px;
    }
    .images img {
        width: 100px; 
        height: 100px;
        justify-content: center;
        align-items: center;
       margin-left: 0px;
}
.footer p.order {
    margin-right: 20px;
    font-size: 1em;
    color: rgb(60, 255, 0);
    font-style: italic;
    transform: translate(10px,10px);
    text-align: center;

}
.list ul li{
    font-size: 1.09em;
    color: white;
    padding: 5px;
}
}