body {
  color: whitesmoke;
  text-align: center;
  font-family: 'acumin-pro-condensed', "SF Pro Text", arial, helvetica;
  font-weight: 500;
  background-color: #1b1a19;
  height: 100%;
  margin: 0;
}

.wrapper {
   height: 100%;
   width: 100vw;
   justify-content: center;
   flex-direction: column;
   display: flex;
}

.main_content {
  align-self: center;
  vertical-align: middle;
  width: 100vw;
  height: 30vh;
  min-height: 100px;
  display: block;
  position: relative;
}

svg {
    fill: rgba(255, 255, 255, 0);
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 25vh;
    height: 100%;
    overflow: visible;
}

h1 {
  font-size: 1.5vh;
  letter-spacing: 1vh;
  font-weight: 500;
  animation: fadeIn 4s ease;
  margin-block-start: 5vh;
}

.page_top {
  border-bottom: 1px solid black;
}

ul {
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

ul li {
  display: inline-block;
}

a {
  font-weight:300;
  letter-spacing:2px;
  font-size: 1.55vh;
  text-transform: uppercase;
  color: whitesmoke;
  font-weight: 600;
  line-height: 5vh;
  text-decoration: none;
}

a:hover {
  color: rgba(255,255,255,.3);
  transition: all 0.3s ease;
}

a:active {
  color: goldenrod;
  transition: all 0.3s ease;
}

.st0 {
  fill: whitesmoke;
  stroke: whitesmoke;
  animation: fadeInLogo 7s cubic-bezier(0.59, 0.09, 0.5, 1.04);
  transition: all 0.9s cubic-bezier(0.59, 0.09, 0.5, 1.04);
}

/* .main_content:hover #Layer_4 path {
  fill: yellow !important;
} */

.logo-layer-1 {
  filter: blur(1px);
  opacity: .3;
}

.logo-layer-2 {
  opacity: .5;
  filter: blur(3px);
}

.logo-layer-3 {
  opacity: .31;
  filter: blur(4px);
}

@-webkit-keyframes fadeInLogo {
  0% {
    fill: rgba(255, 255, 255, 0);
    opacity: 0;
    stroke-dasharray: 1px 30px;
  }

  90% {
    fill: rgba(255, 255, 255, 0);
    opacity: 1;
    stroke-dasharray: 1px 0px;
  }

  100% {
    fill: rgba(255, 255, 255, 1);
  }
}

@-webkit-keyframes fadeIn {
  0% {
  	opacity: 0;
  }

  100% {
  	opacity: 1;
  }
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
