@import url(https://fonts.googleapis.com/css?family=Raleway:400,,800,900);
html {
  width: 100%;
  height: 100%;
}

body {
  background: -webkit-gradient(linear, left top, left bottom, from(#141414), to(#1e1e1e));
  background: linear-gradient(#141414, #1e1e1e);
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: 'Raleway', sans-serif;
  overflow: hidden;
  /* Hide scrollbars */
}

.container {
  height: 100vh;
  width: 100vw;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.logo {
  height: 35vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo #logo {
  height: 20%;
  position: absolute;
}

.title {
  height: 50vh;
  font-weight: 800;
  color: transparent;
  font-size: 20vh;
  background: url("./protagonist.png") repeat;
  background-size: cover;
  -webkit-background-clip: text;
  position: relative;
  text-align: center;
  line-height: 20vh;
  letter-spacing: 0px;
}

.subtitle {
  position: absolute;
  bottom: 8vh;
  left: 45vw;
  font-size: 1.5vh;
  display: block;
  text-align: center;
  color: white;
}

.ex1 {
  top: 80%;
  height: 20vh;
  width: 40vw;
  left: 30vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* padding: 60px 0; */
  text-align: center;
  position: absolute;
}

.ex1 a {
  height: 100%;
  width: 100%;
  color: white;
  cursor: pointer;
  text-decoration: none;
  font-size: 8vh;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
          animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px;
  }
  to {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 0 30px;
  }
}
/*# sourceMappingURL=style.css.map */