body,
html {
  height: 100%;
}

body {
  font-family: 'Futura', Arial, sans-serif;
  background-image: url('/images/bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: white;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.body {
  padding: 20px 0;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.container {
  max-width: 800px;
  padding: 20px;
  overflow-y: auto;

  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 3px;
  color: #333;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 25px 0;
}

header img {
  width: 100%;
  max-width: 300px;
}

.description {
  margin: 20px 0;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 25px 0;
}

footer strong {
  font-weight: bolder;
  text-decoration: underline;
  margin-bottom: 10px;
}

footer ul {
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

footer li {
  list-style: none;
}

footer li label {
  font-weight: bold;
}

a {
  color: lightblue;
}

@media (max-width: 800px) {
  header img {
    max-width: 200px;
  }

  footer {
    padding: 20px 20px 50px;
  }

  header {
    margin-top: 50px;
  }
}