body {
    font-family: "Times New Roman", Georgia, Serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display";
    letter-spacing: 5px;
}

header img.w3-image,
header.w3-content {
    height: 700px;
    width: 100%;
    max-width: unset;
}

.w3-xxlarge {
    color: aliceblue;
}

@media only screen and (max-width: 550px) {
    footer {
        width: 150%;
    }
    header {
        min-width: 100%;
    }
    header img.w3-image {
        height: 450px;
    }
    .w3-display-bottomleft {
        bottom: unset;
    }
    .w3-xxlarge {
        color: black;
    }
}


/* Flex Box */

.flexbox_container_1 {
    border: 2px solid black;
    padding: 2px;
    display: flex;
    /* display: flex; It makes the item a flexbox*/
    justify-content: space-around;
    /* justify-content: space-around; Evenly spaces out the items in that line*/
    flex-wrap: wrap;
    /*flex-wrap: wrap; Goes to the next line instead of going out*/
    flex-direction: column;
}

.flexbox_container_1 div {
    padding: 15px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.flexbox_container_1 img {
    height: 325px;
}