html {
  font-family: "Montserrat", serif;
}

body {
  background-color: black;
  margin: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

body .background {
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(23, 60, 44, 0.8) 30%,
    rgba(7, 28, 33, 0.8) 70%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
  position: absolute;
  max-width: 90%;
}

.content h1 {
  color: rgb(256, 256, 256);
  font-size: calc(20px + 0.390625vw);
}

.content img {
  margin: auto;
  display: block;
  max-width: 80%;
}

.background footer {
  position: fixed;
  text-align: center;
  width: 100%;
  bottom: 0;
  margin-bottom: 2%;
  color: rgb(256, 256, 256);
}

footer img {
  margin: auto;
  display: block;
  max-width: 2%;
}
