* {
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

body {
  height: 100vh;
  background-color: #000;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.c-hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Exo 2", sans-serif;
  font-size: 9vmin;
  font-weight: 700;
  letter-spacing: 3vmin;
  text-transform: uppercase;
  text-shadow: #fdfd05 1px 0 30px;
  position: absolute;
}