* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  color: #fff;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85)),
    url("background.png");

  background-size: cover;
  background-position: center;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0px,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 4px
    );
  pointer-events: none;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.panel {
  width: min(900px, 100%);
  padding: 54px 42px;
  text-align: center;
  position: relative;

  background: rgba(8, 8, 8, 0.9);
  border: 3px solid #fff;

  box-shadow:
    12px 12px 0 #000,
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;

  transform: rotate(-1deg);
}

.language-switch {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
}

.lang-btn {
  padding: 7px 10px;
  cursor: pointer;

  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;

  color: #fff;
  background: #111;
  border: 2px solid #fff;
}

.lang-btn.active,
.lang-btn:hover {
  color: #000;
  background: #fff;
}

.label {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 18px;

  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #000;
  background: #fff;
}

h1 {
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: #fff;
  text-shadow:
    4px 4px 0 #000,
    7px 7px 0 #555;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: #e8e8e8;
  font-weight: inherit;
}

.message {
  max-width: 620px;
  margin: 28px auto 0;

  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #cfcfcf;
}

.divider {
  width: 140px;
  height: 3px;
  margin: 34px auto 26px;
  background: #fff;
}

.contact-label {
  margin-bottom: 8px;

  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
}

.email {
  display: inline-block;

  font-family: Arial, sans-serif;
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 900;
  color: #fff;
  text-decoration: none;

  border-bottom: 3px solid #fff;
}

.email:hover {
  color: #ccc;
  border-bottom-color: #ccc;
}

@media (max-width: 600px) {
  .panel {
    padding: 56px 24px 40px;
    transform: none;
  }

  .language-switch {
    top: 14px;
    right: 14px;
  }

  .message {
    font-size: 16px;
  }
}