@import url("https://fonts.googleapis.com/css?family=Raleway:900&display=swap");

:root {
  --dark-blue: #060d18;
  --cyan: #17fffb;
  --white: #ffffff;
  --gray-blue: #a0b2c4;
}

body {
  color: #a0b2c4;
  background-color: var(--dark-blue);
  overflow: hidden;
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
  color: var(--dark-blue);
}

.pl {
  display: flex;
  /* align-items: center; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pl__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 125%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  opacity: 0;
}

.pl__assistant {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 70%;
  background-size: cover;
  background-position: center top;
  opacity: 0;
}

.pl__logo-inverted {
  position: absolute;
  top: -30vh;
  right: 0;
  height: 135vh;
  width: 60%;
  z-index: 2;
  transform: translateX(100%);
}

.pl__logo-inverted .svg {
  float: left;
  display: block;
  height: 100%;
  width: auto;
  opacity: 0.1;
}
.pl_logo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* z-index: 1; */
}

.logo {
  width: 100%;
  max-width: calc(100vh * .5);
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
}

.lion {
  position: relative;
  display: block;
  width: 8vh;
  height: 0;
  padding-bottom: 100%;
}

.lion .svg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
}


.button {
  position: absolute;
  bottom: 30px;
  left: 30px;
  border: none;
  outline: none;
  background-color: var(--cyan);
  display: inline-block;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.25s ease-out;
  will-change: opacity, color, background-color;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.25;
  pointer-events: none;
}

.button.is-active {
  opacity: 1;
  pointer-events: all;
}

.button:hover {
  color: var(--white);
  background-color: var(--dark-blue);
}

#container {
  position: absolute;
  margin: auto;
  width: 200px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  opacity: 0;
  filter: url(#threshold) blur(0.6px);
  white-space: nowrap;
}

#text1,
#text2 {
  position: absolute;
  width: 100%;
  display: inline-block;

  font-family: "Shadows Into Light", cursive;
  font-size: 40px;
  color: var(--gray-blue);

  text-align: center;

  user-select: none;
  opacity: 0;
}
