*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  font-size: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  weight: 200;
  color: #404e5c;
  cursor: crosshair;
}

body{
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}

a{
  text-decoration: none;
}

p{
  font-size: 3rem;
  font-weight: 300;
}

header{
  width: 100%;
  height: 10vh;
  position: fixed;
}

.top-nav{
  width: 5%;
  height: 9rem;
  position: fixed;
  top: -100vh;
  z-index: 10;
  background: hsla(202,61%,54%,0.01);
  left: 7rem;
}

.nav-list{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-list li{
  margin-right: 10rem;
}

li{
  color: #eee;
}

.nav-link{
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 4rem;
  font-weight: 300;
  color: #1956F0;
  background-color: rgb(255,255,255);
}

.nav-link:hover,
.nav-link:focus{
  background: linear-gradient(to top, #f05365ff, #4e5283ff); /*red to green */
  -webkit-background-clip: text;
  -webkit-background-fill-color: transparent;
}

.top-nav.open{
  top: 0;
  margin-left: 2rem;
  margin-top: -1rem;

}

.menu-toggler{
  position: fixed;
  right: 1rem;
  top: 1rem;
  width: 6.5rem;
  height: 6rem;
  display: flex;
  flex-direction: column;
  margin: 1rem;
  justify-content: space-around;
  cursor: pointer;
  z-index: 1;
  transition: transform 350ms ease-out;
  background: rgba(255,255,255,0.5);
  align-items: center;
}

.menu-toggler.open{
  /* transform: ; */
}

.bar{
  background: radial-gradient(#FFF, #1956F0);
  width: 50%;
  height: 2.5px;
  border-radius: 0.5rem;
}

.bar.half{
  width: 80%;
}

.bar.start{
  transform-origin: center;
  transition: transform 300ms cubic-bezier(0.1,0.4,0.7,0.1)
}

.open .bar.start{
  transform: translateX(1.05rem) translateY(1.1rem) rotate(70deg);
}

.bar.end{
  align-self: flex-end;
  transform-origin: left;
  transition: transform 300ms cubic-bezier(0.1,0.4,0.7,0.1);
}

.open .bar.end{
  transform: translateY(-0.5rem) translateX(-0.1rem) rotate(-70deg);
}

.wrapper{
  display: flex;
  flex-direction: row;
  width: 400vw;
  height: 100vh;
}

.slide {
  width: 100vw;
  height: 100vh;
}

.one{
}

.landing-text{
  padding: 10rem;
  position: relative;
  top: 6%;
  left: 7rem;
  width: 100%;
  text-align: left;
  z-index: 1;
  cursor: crosshair;
  display: block;
}

.landing-text h1{
  line-height: 22rem;
  font-size: 17rem;
  letter-spacing: 0.9rem;
  font-family: 'Glory', serif;
  font-weight: 400;
  transform: scale(1,1);
  /* -webkit-text-stroke-width: .1rem;
  -webkit-text-stroke-color: black;
  -webkit-text-fill-color: black; */
  user-select: none;
  font-style: italic;
  text-transform: lowercase;
  color: black;
}

.home{
  top: 2%;
  position: fixed;
  left: 15rem;
  width: 100%;
  text-align: left;
  padding: 1rem;
  margin: 1rem;
  display: flex;
}

.home h6{
  font-family: 'Glory', serif;
  font-size: 6.6rem;
  font-weight: 300;
  color: #1956F0;
  font-style: italic;
}

.home a{
  display: block;
  position: relative;
  padding-right: 1rem;
  overflow: hidden;
}

.home a h6::after {
  content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.5rem;
	background-color: #1956F0;
	/* opacity 1; */
	transition: opacity 300ms, transform 300ms;
  transform: translate3d(-100%, 0, 0);
}

.home a h6:hover::after,
.home a h6:focus::after{
  opacity: 1;
  /* transform: translate3d(0, 0.2em, 0); */
  transform: translate3d(0, 0, 0);
}

.about{
}

.about-details{
  position: absolute;
  top: 15%;
  left: 32%;
  width: 65%;
  height: 100%;
  column-count: 1;
  column-gap: 11rem;
}

.about-details p{
  display: inline;
  font-family: 'Source Sans Pro';
  font-weight: 200;
  font-size: 6rem;
  justify-content: space-between;
  text-transform: full-width;
  background: hsla(360, 100%, 100%, 0.9);
  /* padding: 3rem; */
}

.copyright{
  display: block;
  height: 1%;
  bottom: 1%;
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  position: fixed;
}

.copyright p{
  font-size: 1.4rem;
}
