html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Poppins", sans-serif;
  background-color: rgba(240, 240, 240, 1);
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

header {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 1);
  z-index: 1;
}

header h1 {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.8);
}

main {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

footer {
  text-align: center;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

footer p {
  font-size: 0.8rem;
  margin: 0.25rem 0;
  color: rgba(255, 255, 255, 0.9);
}

#photo-attribution {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  z-index: 100;
}

footer a,
#photo-attribution a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

footer a:hover,
#photo-attribution a:hover {
  text-decoration: none;
  color: rgb(125, 97, 148);
}

body {
  background-image: url("");
  background-size: cover;
  background-position: center;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: blur(0.3125rem);
}
