@media only screen and (max-width: 600px) {
  body {
    font-size: 5vh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}

:root {
  --primary-color: azure;
  --secondary-color: #FF0150;
  --complimentary-color: #FFDB00;
}

.first, .second, .third,
.first::-moz-selection, .second::-moz-selection, .third::-moz-selection, 
h1::-moz-selection, .first::selection, .second::selection, .third::selection, 
h1::selection {
  background-color: var(--primary-color);
  color: #191919;
}

.blur-effect {
    filter: blur(5px);
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #161616;
}

.content {
  width: 60%;
  margin: auto;
  background-color: #191919;
  padding: 50px;
  box-shadow: 6px 6px 12px rgba(19, 19, 19, 0.8);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.content h1 {
  font-size: 40px;
  color: var(--primary-color);
}

.content p {
  font-size: 16px;
  margin: 15px 0;
  padding-left: 10px;
  font-weight: 400;
  line-height: 23px;
}

html, body {
  background: var(--primary-color) url('https://archive.jesse5.com/fabulousCulture.jpg') no-repeat fixed center;
  background-size: cover;
  background-color: #000000;
  font-family: "ROBOTO", sans-serif;
  overflow-x: hidden;
}

.nav, .slider {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 90vh;
  position: relative;
  text-align: center;
  margin-top: 0.5em;
  mix-blend-mode: exclusion;
  color: var(--primary-color);
  font-size: 5vh;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav h1, .slider h1 {
  margin: 0;
  letter-spacing: -0.25rem;
  transition: all 1.25s ease;
  z-index: 3;
  opacity: 0.98;
  font-size: 7vw;
}

h1:hover {
  transform: translate3d(0, 0px, 52px);
  color: var(--secondary-color);
  mix-blend-mode: hard-light;
  background-color: var(--secondary-color);
}

.nav-container {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 75px;
}

.i {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  font-size: 6vh;
  color: rgba(255, 255, 255, 0.75);
}

.v {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  font-size: 6vh;
  color: rgba(255, 143, 143, 0.85);
}

a:hover {
  transform: rotateX(3.14159rad);
}

.v:hover {
  color: #000000;
  background: var(--secondary-color);
}

a {
  text-decoration: none;
}
