* {
  box-sizing: border-box; /* Makes sizing more predictable */
  margin: 0;
  padding: 0;
}

body {
    background-color: rgb(240, 241, 231);
    background-image: url("../images/floral-pattern-background2.jpg");
    background-size: contain;
}

.inline-image {
            vertical-align: middle;
        }

h1, h2, h3, h4, h5 {
    padding-top: 10px;
    font-family: Georgia, Times, 'Times New Roman', serif;
}

p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 20px;
}

nav img {
    position: relative;
    left: 10px;
    top: 3px;
    filter: brightness(.1);
}

nav a {
    background-color: rgb(163, 154, 136);;
     color: rgb(223, 226, 215);
    font-size: 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    position: relative;
    top: 7px;
    padding: 10px;
}

nav a:hover {
    color: rgb(255, 255, 255);
}

.flexbox {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 1000px;
    min-width: 800px;
}

main {
    background-color: rgb(200, 199, 190);
    border-width: 7px;
    border-color: rgb(163, 154, 136);
    border-style: ridge;
    width: 800px;
    height: auto;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
    padding-bottom: 10px;
    filter: opacity(95%);
}