/*@font-face {
    font-family: 'N27';
    src: url('N27-Regular.woff2') format('woff2'),
        url('N27-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}*/
@font-face {
    font-family: 'N27';
    src: url('N27-Bold.woff2') format('woff2'),
        url('N27-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'N27';
    src: url('N27-Light.woff2') format('woff2'),
        url('N27-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
/*@font-face {
    font-family: 'N27';
    src: url('N27-Medium.woff2') format('woff2'),
        url('N27-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}*/

*,*::before,*::after{box-sizing:border-box}
html,body{
  background: #000;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 16px;
  font-family: 'N27';
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2em;
  height: 100vh;
}
h1{
  margin: 0;
  padding: 0;
}
h1 img{
  display: block;
}
.logo{
  max-width: 100%;
  height: auto;
}
.logo.mobile{
  display: none;
}
.flex {
  display: flex;
  justify-content: space-between;
  padding: 0 2em;
  flex: 1;
  gap: 2em;
}
.card {
  text-transform: uppercase;
}
.card h2, .card h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
}
.card h3 {
  font-weight: 300;
}
.card2 {
  text-align: right;
}
.video {
  flex: 1;
}
.video.mobile {
  display: none;
}
.video > div {
  width: 100%;
  height: 100%;
}

footer {
  text-align: center;
  padding: 0 0 1em;
}
footer a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
}

/* Responsive */
@media (max-width:900px){
  .main {
    gap: 1em;
  }
  .logo{
    display: none;
  }
  .logo.mobile{
    display: block;
  }
  .flex {
    padding: 0 1em;
    gap: 1em;
    flex: 0;
  }
  .card h2, .card h3 {
    font-size: 1em;
  }
  .video {
    display: none;
  }
  .video.mobile {
    display: block;
  }
  footer {
    padding: 0;
  }
  footer a {
    font-size: 1em;
  }
}