@font-face {
  font-family: 'Biennale';
  src: url('../fonts/Biennale-Bold (4).otf') format('opentype');
  font-style: normal;
}

:root {
  --white: #ffffff;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Biennale';
}

body {
  width: 100%;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
}

/* ================= HEADER ================= */
.pxr-header {
  height: 14vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.pxr-header img {
  width: 12vw;
  max-width: 12rem;
  min-width: 6rem;
}

/* ================= HERO ================= */
.pxr-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pxr-hero picture,
.pxr-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 100%;
}

.pxr-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.pxr-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5vw;
}

.pxr-hero-content h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  margin-bottom: 2vh;
}

.pxr-hero-content h5 {
  font-size: 40px;
  margin: 25px 0px 25px 0px;
}

.pxr-hero-content button {
  padding: 1em 3em;
  font-size: 1.25rem;
  border-radius: 1rem;
  border: 3px solid #fff;
  background-color: #000;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

/* ================= FOOTER ================= */
.pxr-footer {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.pxr-footer a {
  color: var(--white);
  font-size: 1.1rem;
  text-decoration: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .pxr-header {
    height: 12vh;
  }

  .pxr-hero {
    height: 80vh;
  }

  .pxr-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 3.3vh;
  }

  .pxr-header img {
    width: 45vw;
  }

  .pxr-hero-content button {
    font-size: 1.2rem;
  }

  .pxr-hero-content h5 {
    font-size: 25px;
  }
}