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

body {
    background-color: rgb(63, 67, 86);
    background-image: url("../images/garden-background-3.webp")
}

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

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

p {
    font-family: 'Times New Roman', serif;
    font-size: 18px;
    text-indent: 40px;
    padding-top: 7px;
    color: rgb(34, 36, 44);
}

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

nav a {
    background-color: rgb(13, 37, 53);
     color: rgb(167, 185, 185);
    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: auto;
    padding-bottom: 50px;
    padding-top: 20px;
    min-width: 800px;
}

main {
    background-color: rgb(138, 140, 149);
    border-width: 6px;
    border-color: rgb(0, 0, 0);
    border-style: ridge;
    width: 800px;
    height: auto;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    
    padding: 0px 15px 25px 15px;
    filter: opacity(95%);
    margin-top: 20px;
}

h1, h2, h3, h4 {
    margin-bottom: -2px;
    text-align: center;
}

h1 {
    color: rgb(29, 38, 46);
}

h2 {
     color: rgb(51, 66, 79);
}

h3 {
    color: rgb(71, 89, 105);
    margin-top: 5px;
}

h4 {
    color: rgb(71, 89, 105);
    margin-top: 5px;
}

a {
    color: rgb(20, 72, 95);
}

a:hover {
    color: rgb(180, 196, 210);
}


