body {
    background-color: lightgoldenrodyellow;
    color: rgb(254, 254, 254);
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    margin-top: 25px;
    line-height: 30px;
}

p {
    font-size: 17px;
}

.photoArray {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    padding: 30px;
 }
 
 .photoArray figure {
    border: 3px solid rgb(23, 23, 81);
    flex: 0 0 auto;
    width: 200px; aspect-ratio: 1;
    background-size: cover;
 }
 
.photoArray figure:nth-child(1) {
    background-image: url(../images/mohair1.jpg);
 }
 
.photoArray figure:nth-child(2) {
    background-image: url(../images/mohair2.jpeg);
 }

h1 {
    color: lightgoldenrodyellow;
    border: 5px solid lightgoldenrodyellow;
    position: absolute;
    padding: 5px;
    right: 250px;
    left: 250px;
    font-family: "Caveat", cursive;
    font-size: 35px;

}

h2 {
    color: brown;
    font-size: 20px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.5;
}

nav {
    background-color: rgb(69, 56, 56);
    width: 100%;
    height: 28px;
    text-align: center;
    padding: 25px 0;
}

nav a {
    color: lightgoldenrodyellow;
    text-decoration: none; /* get ride of underline */
}

nav a:hover {
    background-color: bisque;
    color: brown;
}
#container {
    border: 8px solid rgb(69, 56, 56);
    min-height: 45vh;
}

img {
    width:55vw;
    display: flex;
    margin: auto;
    padding-top: 20px;
    box-shadow: 2px 4px 7px black;
    border-radius: 20px;

}

footer {
    color: lightgoldenrodyellow;
    background-color: rgb(122, 108, 108);
}

section {
    color: brown;
}
