/*****
ELEMENTS WITH COLORS TO CHANGE:
***/
body {
  background: #5a111d;  /*shows up when background-fade is done - this needs to match the 100% number in background-fade below */
  font-size: 16px;
  line-height: 32px;
  color: #5a111d;
  word-wrap: break-word !important;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  animation: background-fade 10s;
}
#textbox {
  width: 40vw;
  font-size: 2vw;
  font-weight:600;
  opacity: 0;
  color: #f77da2;
}
/* the text in the center of the page*/
h1 {
  font-size: 5vw;
  text-align: center;
  color: #d3c8b0;
  margin-top: 150px;
  font-family: 'Quicksand', sans-serif;
}

h1 span {
  color: #9d824c;
}

/* the nav bar with all the menu items */
nav {
  margin: 35px 0px;
  background-color: #7a314d;
}

nav ul {
  padding: 0;
  list-style: none;
  position: relative;
}

nav ul li {
  display: inline-block;
  background-color: #7a314d;
/*  margin: 0px 0px 0px 10px;*/
}

nav a {
  display: block;
  padding: 0 10px;
  color: #FFF;
  font-size: 18px;
  line-height: 50px;
  text-decoration: none;
}

nav a:hover {
  background-color: #333;
}

nav ul ul {
  display: none;
  position: absolute;
  top: 50px;
  
}
nav ul ul li {
  border: 1px solid white;
}
/* the fade in/out for the background color */
@keyframes background-fade {
  0% {
    background: #9a516d;
  }

  25% {
    background: #7a112d;
  }

  50% {
    background: #6a214d;
  }

  100% {
    background: #5a111d;
  }
}

@keyframes zoominoutsinglefeatured {
  0% {
    transform: scale(0.1, 0.1);
  }

  100% {
    transform: scale(1, 1);
  }

}
/*********************
 * no colors to change:
 *********************/
.zoom {
  animation: zoominoutsinglefeatured 5s 1;
}

#ci:hover {
  cursor: pointer;
}

/* the CI check-it icon will shake 3 times*/
img {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 10vw;
  font-weight: 900;
  text-decoration: none;
  color: white;
  display: inline-block;
  background-size: 120% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  -ms-background-clip: text;
  -ms-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  background-image: linear-gradient(45deg,
      #7794ff,
      #44107A,
      #FF1361,
      #FFF800);
  animation: 1.8s shake 8 ease-in-out;
}

@keyframes shake {
  0% {
    transform: skewX(-15deg);
  }

  5% {
    transform: skewX(15deg);
  }

  10% {
    transform: skewX(-15deg);
  }

  15% {
    transform: skewX(15deg);
  }

  20% {
    transform: skewX(0deg);
  }

  100% {
    transform: skewX(0deg);
  }

}

#wrapper {
  margin: auto;
  width: 500px;
}

.animatee {
  opacity: 1 !important;
  transition: opacity 2.6s ease 0s;
}

#cchs {
  /* silver shift right thing*/
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #000, #fff, #000);
  /*  background-repeat: no-repeat;*/
  background-size: 80%;
  z-index:-1;
  animation: animate 15s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate {
  0% {
    background-position: -500%;
  }

  100% {
    background-position: 600%;
  }
}

#container {
  margin: 0 auto;
}



nav ul li:hover > ul {
  display: inherit;
}

nav ul ul li {
  width: 300px;
  float: none;
  display: list-item;
  position: relative;
}

nav ul ul ul li {
  position: relative;
  top: -50px;
  left: 300px;
}



nav ul ul li > a:after {
  content: ' ↪';
}

nav ul ul li > a:only-child:after {
  content: '';
}
