@import url(https://fonts.googleapis.com/css?family=Jost:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Viaoda+Libre:regular,500,600,700,italic,500italic,600italic,700italic);
@import url(https://fonts.googleapis.com/css?family=EB+Garamond:regular,500,600,700,800,italic,500italic,600italic,700italic,800italic);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

::-webkit-scrollbar {
  display: none;
}

html,
body {
  height: 100vh;
  width: 100vw;
  font-family: "Jost";
  pointer-events: none;
}

.pre-loader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.loader {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 400px;
  z-index: 2;
  color: #fff;
  font-family: "Viaoda Libre";
}

.count {
  flex: 2 ;
  text-align: right;
  line-height: 1;
  padding: 0 1em;
}

.copy {
  flex: 6;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
}

.ml16 {
  overflow: hidden;
}

.ml16 .letter {
  display: inline-block;
  line-height: 1em;
}

.loader-bg {
  position: absolute;
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background: red;
  z-index: -1;
}

.laoder-2 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://bubblecs.co.uk/wp-content/themes/bubble-creative/assets/gifs/desktop/bubble-website-headers-graphic-design.gif) no-repeat 50% 50%;
  background-size: cover;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.content {
  position: relative;
  z-index: -2;
}

nav {
  width: 100%;
  padding: 2em;
  display: flex;
}

a {
  text-decoration: none;
  color: #000;
}

nav > div {
  flex: 1;
}

.links {
  display: flex;
  justify-content: flex-end;
  gap: 2em;
}

.header {
  display: flex;
  padding: 1em;
  /* text-align: center; */
}

.header h1 {
  flex: 1;
  position: relative;
  font-size: 20vw;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: 'Viaoda Libre';
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 2em;
}

footer > div {
  flex: 1;
}

.footer-copy p {
  width: 50%;
}

.footer-nav {
  display: flex;
  gap: 2em;
  justify-content: flex-end;
}

.img {
  width: 225px;
  height: 150px;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.img:nth-child(1) {
  background: url(https://i.pinimg.com/564x/23/ae/3d/23ae3d4f8c4772c361f80c09cc14b83f.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.img:nth-child(2) {
  background: url(https://i.pinimg.com/564x/82/b1/04/82b1041612e51874fad3bd589ac42bbd.jpg) no-repeat 50% 50%;
  background-size: cover;
}

@media (max-width: 900px) {
  footer {
    flex-direction: column;
    gap: 2em;
  }

  .footer-copy p{
    width: 100%;
  }

  .footer-nav {
    width: 100%;
    justify-content: space-between;
  }
}

