/* ENTIRE PAGE */
*{
    background-color:#0c0c0c;
}

/* FONTS by: Google Fonts */
@font-face {
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Oxygen Regular'), local('Oxygen-Regular'), url(https://fonts.gstatic.com/s/oxygen/v9/2sDfZG1Wl4LcnbuKjk0m.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ENTIRE PAGE */
body{
    margin: 0
}

/* PAGE CONTENT */
.container{
    width: 100%;
    margin: 100px auto;
    text-align: center;
}

/* NAV */
header {
    background-color: #d4d4dc;
    padding-top: 10px;
}

nav {
    box-shadow: 0px 5px 0px #dedede;
}

nav ul {
    margin: 0;
    background-color: #d4d4dc;
    padding: 0;
    padding-bottom: 20px;
    list-style: none;
    text-align: center;
    position: relative;
}

nav li {
    display: inline-block;
    background-color: #d4d4dc;
    margin-left: 70px;
    vertical-align: middle;
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    background-color: #d4d4dc;
    color: #000000;
    font-size: 20px;
    font-family: 'Oxygen', sans-serif;
}

/* HOVER ANIMATIONS */
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}

nav ul li a:hover {
  color: #000;
}

nav ul li a{
  position: relative;
}

nav ul li a:after{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #000;
  height: 1px;
}
nav ul li a:hover:after {
  width: 100%;
}

/* LOGO */
.logo{
    display: block;
    margin: auto;
    width: 33%;
}

/* TITLE */
.container h1{
    color: #ffffff;
    font-family: 'Oxygen', sans-serif;
    text-align: center;
    align-items: center;
    font-size: 60px;
    margin-top: 100px;
}

/* QUOTE */
.container .quote{
    color: #ffffff;
    font-family: 'Oxygen', sans-serif;
    text-align: center;
    align-items: center;
    font-size: 20px;
}

/* GITHUB */
footer{
    position: fixed;
    background-color: #ffffff;
    text-align: center;
    align-items: center;
    border-radius: 8px;
    padding: 5px 5px;
    bottom: 0;
}

footer a{
    background-color: #ffffff;
    text-decoration: none;
}

.github{
    background-color: #ffffff;
}