* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.body {
  background-color: #705050;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgb(83, 112, 26);
  box-shadow: 0px 0px 15px 0px rgb(83, 112, 26);
  background-color: rgb(60, 0, 0);
  padding: 10px;
}

.header__title {
  color: white;
  text-align: center;
}

.main {
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 10px;
}

.message {
  margin-bottom: 30px;
}

.message__title {
  color: white;
  text-align: center;
}

.message__paragraph {
  padding: 10px;
  text-align: center;
  color: lightgray;
}

.photo {
  width: 100%;
  height: fit-content;
  text-align: center;
}

.photo__img {
  width: 300px;
  object-fit: contain;
  border: 4px solid white;
  border-radius: 5px;
}

.photo__caption {
  text-align: center;
  color: lightgray;
}

.footer {
  border-top: 1px solid rgb(83, 112, 26);
  box-shadow: 0px 0px 15px 0px rgb(83, 112, 26);
  background-color: rgb(60, 0, 0);
  padding: 10px;
}

.footer__paragraph {
  color: lightgray;
  font-size: small;
  text-align: center;
}

.footer__link {
  color: white;
  text-decoration: underline;
}

.footer__link:hover {
  color: lightgray;
}
