html, body {
    overflow-x: hidden;
    margin: 0;
    height: 100%;
  }
  
  body {
    height: 100%;
    font-family: "FrizQuadrataBoldBT";
    background: #000000;
    letter-spacing: 5px;
    -webkit-font-smoothing: antialiased;
  }
  
  a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
  }
  a:hover {
    color: #ffffffaa;
    -webkit-transition: 350ms;
    transition: 350ms;
  }


  
  .wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0;
  }

  .loader-body {
    width: 100%;
    height: 100vh;
    background-color: black;
    position: fixed;
    z-index: 2;
    visibility: visible;
    top: 0;
    left: 0;
    text-align: center;
    justify-content: center;
    align-content: center;
    transition: 0.5s all;
  }
  .loader {
    width: 100px;
    height: 100px;
    border: 12px white solid;
    border-radius: 50%;
    position: absolute;
    border-top-color: gray ; /*Here you can change color of the loader spin*/
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-animation: 1s spin infinite linear;
    -o-animation: 1s spin infinite linear;
    animation: 1s spin infinite linear;
  
  }
  .loader-body.done {
    visibility: hidden;
    opacity: 0;
  }
  @keyframes spin {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  
  .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: #000;
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-word;
  }
  
  @font-face {
    font-family: "FrizQuadrataBoldBT";
    src: url("../assets/fonts/FrizQuadrataBoldBT.woff") format("woff");
  }
  h1 {
    font-size: 6em;
  }
  @media screen and (max-width: 850px) {
    h1 {
      font-size: 4em;
    }
  }
  
  header {
    height: 250px;
    text-align: center;
    padding: 25px 0;
    color: #ffffff;
    background-color: #000;
  }
  