body {
  background: url("/photos/earth-texture.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#bg-box {
  background-color: rgba(212, 201, 171, .4);
  padding: 20px;
  margin: 10px;
  border-color: rgba(255, 255, 255, .3);
  border-width: 3px;
  border-style: solid;
  border-radius: 5px;
}
#header {
  background-color: rgba(85, 107, 47, .65);
  padding: 20px;
  border-radius: 30px;
  max-width: 650px;
  margin: auto;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
h1 {
  font-size: 50px;
  font-family: "Courier", monospace;
  color: rgb(51, 34, 3);
  text-align: center;
  font-weight: bold;
  margin-bottom: -10px;
  margin-top: -10px;
}
h2 {
  font-size: 13px;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: rgb(51, 34, 3);
  text-align: center;
  margin-bottom: -5px;
  margin-top: -10px;
}
h3 {
  font-size: 30px;
  font-family: "Courier", monospace;
  color: rgb(51, 34, 3);
  text-align: center;
  font-weight: bold;
  margin-bottom: -10px;
  margin-top: -10px;
}
h4 {
  font-size: 25px;
  font-family: "Courier", monospace;
  color: rgb(51, 34, 3);
  text-align: center;
  margin-top: -10px;
  margin-bottom: 0px;
}
a {
  text-decoration: none;
}
a:link {
    color: rgb(212, 201, 171);
}
a:visited {
    color: rgb(207, 189, 140);
}
a:focus {
    color: rgb(212, 201, 171);
}
a:hover {
    color: rgb(212, 201, 171);
}
a:active {
    color: rgb(212, 201, 171);
}
#navbar {
  background-color: rgb(51, 34, 3);
  border-radius: 4px;
  max-width: 650px;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.nav {
  margin: 10px;
}
.navlink {
    font-family: "Trebuchet MS";
    color: rgb(212, 201, 171);
    transition: 1s;
    text-decoration: none;
}
.navlink:hover {
  color: rgb(127, 158, 71);
}
#title-wrapper {
  margin: auto;
  text-align: center;
}
#pg-title {
  background-color: rgba(85, 107, 47, .65);
  padding: 20px;
  border-radius: 30px;
  display: inline-block;
  margin: auto;
}
.sm-lg {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-gap: 10px;
  align-items: center;
  grid-template-areas:
    "small large"
}
.lg-sm {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-gap: 10px;
  align-items: center;
  grid-template-areas:
    "large small"
}
.grid-small {
  grid-area: small;
}
.grid-large {
  grid-area: large;
}
.text-box {
  background-color: rgba(85, 107, 47, .65);
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: rgb(51, 34, 3);
  padding: 20px;
  border-radius: 10px;
  margin: auto;
}
.gallery {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 10px;
    align-items: center;
}
.image-box {
    background-color: rgba(51, 34, 3, .3);
    margin: auto;
  text-align: center;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  padding: 0px 0px 10px 0px;
  justify-content: space-around;
}
.contact {
  width: 500px;
  margin: auto;
  font-weight: bold;
}
.form-control {
 border-radius: 5px;
 width: 500px;
 background-color: rgb(212, 201, 171);
}
.button {
  background-color: rgb(51, 34, 3);
  border-radius: 4px;
  margin: auto;
  text-align: center;
  color: rgb(212, 201, 171);
  border: none;
  padding: 10px 10px;
  display: inline-block;
  font-size: 16px;
}
#footer {
  background-color: rgba(85, 107, 47, .3);
  padding: 5px;
  border-radius: 30px;
  max-width: 650px;
  margin: auto;
  font-size: 10px;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: rgb(51, 34, 3);
  text-align: right;
}
