@import url('https://fonts.googleapis.com/css?family=Roboto:400,900');

html {
    scroll-behavior: smooth;
}

body
{
  margin: 0;
  padding: 0;
}

#DarkSky {
    position: absolute;
    width: 150px;
    height: 70px;
    top: 20px;
    right: 20px;
}

#Main {
    width: 750px;
    margin: 75px auto;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 40px;
}

h1:after {
    width: 75px;
    border-bottom: 4px solid #0570F6;
    display: block;
    content: '';
    margin-top: 10px;
    margin-bottom: 30px;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px;
}

h2 a {
    text-decoration: none;
    color: #0d0d0d;
    background: linear-gradient(to top, rgba(5, 111, 246, 0.3) 0.4em, transparent 0.5em);
    display: inline-block;
    vertical-align: top;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

h2 a:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin-top: 75px;
}

h3:after {
    width: 50px;
    border-bottom: 4px solid #0570F6;
    display: block;
    content: '';
    margin-top: 10px;
    margin-bottom: 30px;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0px;
}

h4:after {
    width: 20px;
    border-bottom: 3px solid #0570F6;
    display: block;
    content: '';
    margin-top: 5px;
    margin-bottom: 10px;
}

h4 a {
    text-decoration: none;
    color: #0d0d0d;
}

h5 {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1rem;
    padding: 5px;
    color: #0d0d0d;
    text-align: center;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
}

ul {
    margin-bottom: 50px;
    list-style: none;
}

ul li {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px !important;
    margin-bottom: 20px;
    overflow-wrap: normal;
}

ul li:before {
    content: “\f2b0”;
    font-family: "Font Awesome 5 Free";
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

ul li a {
    text-decoration: none;
    color: #0d0d0d;
}

ul li a:hover {
    font-weight: 900;
}

ul li b {
    font-weight: 900;
    margin-right: 40px;
}

form {
    margin-top: 70px;
}

input[type=text] {
    width: 400px;
    height: 75px;
    padding: 15px 22px;
    margin: 10px auto;
    text-align: center;
    box-sizing: border-box;
    border: none;
    background: #0d0d0d;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    display: block;
    outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: white
  }
  ::-moz-placeholder { /* Firefox 19+ */
    color: white;
  }
  :-ms-input-placeholder { /* IE 10+ */
    color: white;
  }
  :-moz-placeholder { /* Firefox 18- */
    color: white;
  }

input[type=submit] {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1rem;
    padding: 15px;
    background: #0d0d0d;
    color: white;
    margin: 5px auto 0;
    display: block;
    width: 8rem;
    text-align: center;
    border: 1px solid #0d0d0d;
    transition: color 300ms, background 300ms;
    text-decoration: none;
    margin-top: 5px;
    -webkit-appearance: none;
}

input[type=submit]:hover {
    background: white;
    color: #0d0d0d;
    cursor: pointer;
    -webkit-appearance: none;
}

.button {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1rem;
    padding: 15px;
    background: #0d0d0d;
    color: white;
    margin: 2rem auto 0;
    display: block;
    width: 8rem;
    text-align: center;
    border: 1px solid #0d0d0d;
    transition: color 300ms, background 300ms;
    text-decoration: none;
}

.button:hover {
    background: white;
    color: #0d0d0d;
}

#menuToggle {
    display: block;
    position: fixed;
    top: 50px;
    left: 50px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #0d0d0d;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #0d0d0d;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: absolute;
    width: 200px;
    height: 100vh;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;
    background: #fff;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li {
    padding: 10px 0;
    font-size: 18px;
}

#menu a {
    text-decoration: none;
    color: #0d0d0d;
    background: linear-gradient(to top, rgba(5, 111, 246, 0.3) 0.4em, transparent 0.5em);
}

#menuToggle input:checked ~ ul {
    transform: none;
}

.gist-file {
    border: 0px !important;
}

.gist-data {
  border-bottom: 0px !important;
}

.gist-meta {
    display: none !important;
}
