@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-shadow-drop-center {
  0% {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
  }
}

@keyframes text-shadow-up-drop-center {
  0% {
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
  }
  100% {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}

body {
    font-family: proxima-nova, sans-serif;
	font-style: normal;
	font-weight: 100;
    color: #212121;
    background-color: #e9e9e9;
}

h1 {
    font-family: miller-headline;
    font-weight: 600;
    font-style: italic;
    color: #e9e9e9;
    font-size: 10vh;
    letter-spacing: 3px;
    margin-bottom: -15px;
}

h2 {
    font-family: miller-headline;
    font-weight: 600;
    font-style: italic;
    font-size: 7vh;
    letter-spacing: 3px;
}

h4 {
    font-family: miller-headline;
    font-weight: 600;
    font-size: 3.5vh;
}

h6 {
    font-weight: 600;
    font-size: 20px;
}

.feature-box {
    padding: 10px;
    border: 1px #212121 solid;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.sidebar {
    background-color: #212121;
    color: #e9e9e9;
    height: 100vh;
    position: fixed;
    width: 25%;
    z-index: 100;
    padding-right: 15px;
}

.sidebar h3 {
    font-family: miller-headline;
    font-weight: 600;
    font-style: italic;
    font-size: 5vh;
    padding-top: 10vh;
}

.sidebar h3 a:link {
    color: #e9e9e9;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

.sidebar h3 a:hover {
    color: #e9e9e9;
    text-decoration: none;
    opacity: 0.8;
    transition: all .2s ease-in-out;
}

.sidebar h3 a:visited {
    color: #e9e9e9;
    text-decoration: none;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}


.sidebar ul li a:link {
    font-size: 24px;
    color: #e9e9e9;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
}

.sidebar ul li a:hover {
    text-decoration: none;
    opacity: 0.5;
    transition: all .2s ease-in-out;
}

.sidebar ul li a:visited {
    color: #e9e9e9;
}

.page {
    padding: 10vh 50px;
}

.mobile {
    display: none;
}
