:root {
  --color-primary: hsl(310, 100%, 65%);
  --color-secondary: hsl(160, 100%, 65%);
  --background: hsl(230, 30%, 15%);
  --text: hsl(310, 100%, 95%);
}

ul {
  font-family: "Alumni Sans", sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000000;
  position: fixed;
  top: 0;
  width: 100%;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
}

.active {
  background-color: #66023c;
}



section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-size: 2em;
	background: #000;
	color: #fff;
	text-transform: uppercase;
	gap: 30px;
}

h1 {
	font-size: 2.5em;
	text-decoration: underline;
	@media (max-width: 500px) {
		font-size: 1.3em;
	}
}

.text-shadow {
	font-style: italic;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: #fff;
	-webkit-text-stroke-width: 1px;
	text-shadow: 2px 2px 10px $blue;
	transition: all 0.5s ease-in-out;
	text-align: center;
	letter-spacing: 0.2em;
	animation: flicker 0.5s ease-in-out infinite alternate;

	&:hover {
		color: #fff;
	}
}

.tags small {
	@media (max-width: 768px) {
		font-size: 0.5em;
	}
}

@keyframes flicker {
	0% {
		opacity: 0.5;
		text-shadow: 2px 2px 10px $blue;
	}
	100% {
		opacity: 1;
		text-shadow: 2px 2px 20px $blue;
	}
}

body {
  font-family: "Alumni Sans", sans-serif;
  background: #66023c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text);
}

.words {
  #color: #66023c;
  color: #000000;
  font-size: 0;
  line-height: 1.5;
  color: transparent;
  -webkit-text-stroke: 4px black;
  text-stroke: 5px white;
}

.words a {
 #color: #66023c;
  color: #000000;
  font-size: 0;
  line-height: 1.5;
  color: transparent;
  -webkit-text-stroke: 4px black;
  text-stroke: 5px white;
}

.words span {
  font-size: 6rem;
  display: inline-block;
  animation: move 9s ease-in-out infinite;
}

@keyframes move {
  0% {
    transform: translate(-30%, 0);
  }
  50% {
    text-shadow: 0 10px 30px rgba(255, 255, 255, 100.75);
  }
  100% {
    transform: translate(15%, 0);
  }
}

.words span:nth-child(2) {
  animation-delay: 0.5s;
}

.words span:nth-child(3) {
  animation-delay: 1s;
}

.words span:nth-child(4) {
  animation-delay: 1.5s;
}

.words span:nth-child(5) {
  animation-delay: 2s;
}

.words span:nth-child(6) {
  animation-delay: 2.5s;
}

.words span:nth-child(7) {
  animation-delay: 2s;
}

.words span:nth-child(8) {
  animation-delay: 1.5s;
}

.words span:nth-child(9) {
  animation-delay: 1s;
}

.words span:nth-child(10) {
  animation-delay: 0.5s;
}

.title-wrapper {
  display: grid;
  align-items: center;
  justify-content: center;
  transform: skew(0, -10deg);
}

.top-title {
  order: 1;
  text-align: center;
  display: block;
  color: #fff;
  font-size: clamp(1rem, 4vw, 1.5rem);
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.bottom-title {
  order: 3;
  text-align: center;
  display: block;
  color: #fff;
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-top: 2rem;
  padding-left: 2rem;
}

.sweet-title {
  order: 2;
  color: #fff;
  font-weight: 200;
  text-transform: uppercase;
  font-size: clamp(1rem, 5vw, 3rem);
  line-height: 1em;
  text-align: center;
  text-shadow: 2px 1px 1px #4af7ff, 2px 2px 1px #b5c1c8, 4px 2px 1px #4af7ff,
    3px 3px 1px #165bfb, 5px 3px 1px #4af7ff, 4px 4px 1px #165bfb,
    6px 4px 1px #4af7ff, 5px 5px 1px #165bfb, 7px 5px 1px #4af7ff,
    6px 6px 1px #165bfb, 8px 6px 1px #4af7ff, 7px 7px 1px #165bfb,
    9px 7px 1px #4af7ff;

  span {
    display: block;
    position: relative;

    &:before {
      content: attr(data-text);
      position: absolute;
      text-shadow: 2px 2px 1px #b5c1c8, -1px -1px 1px #b5c1c8,
        -2px 2px 1px #e94aa1, 1px -1px 1px #f736f9;
      z-index: 1;
    }

    &:nth-child(1) {
      padding-right: 2.25rem;
    }

    &:nth-child(2) {
      padding-left: 2.25rem;
    }
  }
}


blockquote {
  border-left: 0px solid;
  margin-left: 0;
  padding: 1rem 0 1rem 2rem;
#  font-size: 1.5rem;
#  -webkit-background-clip: text;
#  -webkit-text-fill-color: transparent;
#  background-image: linear-gradient(
#    35deg,
#    var(--color-primary),
#    var(--color-secondary)
#  );

  p {
    margin: 0;
  }
}

.hero-banner {
  align-items: center;
  display: flex;
  height: 60vh;
  position: relative;
  justify-content: center;
  z-index: -2;
}

.hero-banner__title {
  color: #fff;
  font-size: 70px;
  font-weight: 200;
  padding: 0 5px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
}

.hero-banner__stroked-title {
  color: transparent;
  -webkit-text-stroke: 2px white;
  text-stroke: 1px white;
}

.hero-banner__image {
  border-radius: 1px;
  position: fixed;
#  transform: rotate(-15deg);
  width: 800px;
  float: left; 
  margin: 5px;
  padding: 5px 5px;
  font-size: 20px;
  text-align: justify;
  text-align-last: justify;
}


.content {
  background-color: #000000;
  margin: 0;
  font-size: 16px;
  padding: 20px 80px;
#  height: 100vh; // Fake content height.
}

* {
  box-sizing: border-box;
}

#container{
    width: 400px;
    background: yellow;
}
#floated{
    float: left;
    width: 150px;
    background: red;
}
