*,
*:before,
*:after {
  --webkit-box-sizing: border-box;
  --moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --primary: #e4eBed;
  --secondary: #191919;
  --alternate: #FFE81F;
}

a {
  color: var(--primary);
  padding: 0.750rem;
}

::selection {
  background-color: var(--secondary);
  color: var(--alternate);
}

@font-face { 
    font-family: 'Primary';
    src: url('../fonts/Audiowide-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'Secondary';
  src: url('../fonts/Thunder-LC.woff2') format('woff2'), 
      url('../fonts/Thunder-LC.woff2') format('woff') ;
      font-style: normal;
      font-weight: 100;
      font-display: swap;
}

html {
  font-size: max(100vw / 1920 * 10);
}

body {
  font-family: 'Primary';
  background-color: var(--primary);
  color: var(--secondary);
} 

.heroLogo span {
  user-select: none;
}

img {
  webkit-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
  -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none; 
  user-select: none; 
  -webkit-touch-callout: none;
}


h1 {
  font-family: 'Secondary';
  font-size: 54rem;
  line-height: 0.6;
}

h2 {
  font-size: 6.4rem;
  line-height: 1.5;
}

p {
  font-size: 2rem;
}

li,
span {
  font-size: 1.6rem;
  line-height: 1.2;
  display: block;
}


/* Nav */
.nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 2rem;

  display: flex;
  justify-content: space-between;
  z-index: 999;

  mix-blend-mode: difference;
  color: #fff;
}

.heroLogo span {
  font-family: 'Secondary';
  font-size: 4.8rem;
  text-transform: uppercase;

}



.navMenuButton {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 2rem 4rem;

  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 20rem;
  cursor: pointer;
}

.navMenuCircle {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 20rem;
  background-color: var(--alternate);
}


/* Hero */
.hero {
  padding-top: 18rem;
  height: 100vh;
  overflow: hidden;

}

.heroWrapper {
  padding: 2rem;
}

.heroRow {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.heroRow:nth-child(1){
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 2rem;
}

.heroRow:nth-child(2){
  padding-bottom: 2rem 0;
}

.heroRowTitle {
  font-size: 16rem;
  line-height: 1;
  text-transform: uppercase;
}

.heroMediaImage {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


/* Menu */

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

  background-color: var(--secondary);
  color: var(--primary);
  padding-top: 6rem;
  z-index: 40;
}

.menuWrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: inherit;
  padding: 6rem;
}

.menuRow {
  display: flex;
  justify-content: space-between;
}


.menuRow:nth-child(1) {
  align-items: flex-start;
  padding-left: 42rem;
  padding-right: 16rem;
}

.menuRowInfo {
  display: flex;
  justify-content: space-between;
  gap: 12rem;
}


.menuRow:nth-child(2) {
  align-items: flex-end;
} 

.menuRowMedia {
  width: 50rem;
  height: 30rem;
  background-color: var(--primary);
  padding: 2rem;
}

.menuRowMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menuRowTitle {
  display: inline-flex;
}








@media screen and (max-width: 768px){
  html {
    font-size: max(100vw / 768 * 10);
  }

  h1 {
    font-size: 38rem;
  }

  span {
    font-size: 2.4rem;
  }

  .heroRowTitle {
    font-size: 8rem;

  }

  .menu {
    padding-top: 18rem;
  }

  .menuRow:nth-child(1) {
    padding-left: 0;
    padding-right: 0;
  }

  .menuRowInfo {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .menuRowMedia {
    display: none;
  }


}