* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background: #06101d;
  font-family: Arial, Helvetica, sans-serif;
}

.background {
  position: fixed;
  inset: 0;
  background-image: url("background.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  background: linear-gradient(to top, rgba(3, 9, 17, 0.82), rgba(3, 9, 17, 0));
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.email {
  color: #d6a94f;
  font-size: 14px;
  text-decoration: none;
}

.email:hover,
.email:focus-visible {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .background {
    background-position: 62% center;
  }

  footer {
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }
}
