/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

 /* customs */
 html {
  overflow: hidden;
 }
body {
  font-family: 'Bebas Neue', sans-serif;
  background-color: #000000;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.nav-top {
  height: 100px;
  border-bottom: 1px solid #515151;
}

.nav-top img {
  display: block;
  height: 100%;
  width: auto;
  padding: 1rem 0 1rem 2rem;
  margin-left: 100px;
  border-left: 1px solid #515151;
}

body {
  display: flex;
  flex-direction: column;
}

.inner {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-left {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  flex: none;
}

.text {
  border-left: 1px solid #515151;
  align-self: stretch;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
}

.text h1,
.text p,
.cs {
  font-weight: 400 !important;
}

.text h1 {
  font-size: 6em;
  letter-spacing: 10px;
  line-height: 1;
}

.text p {
  font-size: 1.5em;
  letter-spacing: 1px;
  opacity: 0.5;
}

.cs {
  font-size: 1.5em;
  margin-top: 2rem;
  letter-spacing: 1px;
}

body::before {
  content: '';
  position: absolute;
  right: -150px;
  top: -150px;
  width: 500px;
  height: 500px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.1;
}

@media (max-width: 1023px) {
  .text h1 {
    font-size: 3em;
  }
  .text p {
    font-size: 1em;
    margin-top: 0.5rem;
  }
}

@media (max-width: 575px) {
  .nav-left {
    display: none;
  }
  .text {
    border: none;
    padding: 1rem;
  }

  .nav-top img {
  border: none;
    margin: 0 auto;
  }
}
