body {
    color: #594d49;
}

.container {
    display: flex;
    justify-content: space-around;
    height: 85vh;
}

img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.2;
    max-width: 40vw;
}

h1 {
    text-align: center;
    font-size: 300%;
    align-self: center;
    justify-self: center;
    flex-grow: 1.5;
}

footer {
    text-align: center;
}

h3 {
    flex-grow: 1;
}

@media screen and (max-width: 775px) {

     .container {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
     }

     img {
        max-width: 80vw;
        flex-grow: 1.5;
    }

     h1 {
        flex-grow: 1;
     }
  }

