@font-face {
  font-family: Archivo; /* set name */
  src: url(./Archivo/static/Archivo-Black.ttf); /* url of the font */
  font-weight: bold;
}
@font-face {
  font-family: Archivo; /* set name */
  src: url(./Archivo/static/Archivo-Regular.ttf); /* url of the font */
  font-weight: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: 'Archivo',sans-serif;
  font-weight: bold;

}

:root {
  --bg-color: #000000;
  --accent-orange: #ff5a1f;
  --text-white: #ffffff;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-color: var(--bg-color);
  color: var(--text-white);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
}

.card {
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.logo-block {
  margin-bottom: 30vh;
}

.logo-block img {
  max-width: 100%;
}

.headline {
  margin-bottom: 50px;
}

.headline p {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.contact {
  font-size: 15px;
}

.contact p {
  line-height: 1.2;
  margin: 0;
}

.contact .services {
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact .address,
.contact .phone,
.contact .email,
.contact a {
  font-size: 13px;
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Flames video as background strip at the bottom */

.flames-container {
  position: fixed;
  left: 50%;
  top: 5vh;
  transform: translateX(-50%);
  width: auto;
  pointer-events: none;
  z-index: -2;
  min-width: 100%;
}

.flames-video {
  display: block;
  min-width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 768px;
}

@media (min-width: 768px) {
  .page {
    padding: 40px;
  }

  .card {
    max-width: 700px;
  }

  .logo-block {
    margin-bottom: 30vh;
  }

  .headline {
    margin-bottom: 48px;
  }

  .contact {
    font-size: 20px;
  }

  .headline p {
    font-size: 35px;
  }

  .contact {
    font-size: 24px;
  }

  .contact .address,
  .contact .phone,
  .contact .email,
  .contact a {
    font-size: 16px;
  }

  .flames-container {
  top: -45vh;
  }

  .flames-video {
     max-width: 3840px;
  }
}