::selection {
    background: #ff7606;
    color: #333333;
}

::-moz-selection {
    background: #ff7606;
    color: #333333;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    background-color: #0b1c2f;
    display:flex;
    font-size: 18px;
}

#header {
    flex: 0 0 40%;
    height: 100vh;
}

.gradient#header {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 30s ease infinite;
}

@keyframes gradient {
    0%      {background-position: 0% 0%;}
    25%     {background-position: 100% 0%;}
    50%     {background-position: 100% 100%;}
    75%     {background-position: 0% 100%;}
    100%    {background-position: 0% 0%;}
}

#content {
    align-content:center;
    padding: 75px;
    max-width: 1000px;
}

p {
    line-height: 1.5em;
    font-family: "Noto Serif", serif;
    color: #848d96;
    font-weight: 400;
}

h1 {
    font-weight: 900;
    font-size: 2.75em;
    line-height: 1em;
    color: #ddd;
    font-family: "Noto Serif", serif;
}

h2 {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1em;
    font-weight: 400;
    font-family: "Noto Sans", sans-serif;
}

a {
    text-decoration: none;
    color: #848d96;
    border-bottom: 1px solid #848d96;
}

#footer p {
    font-size: 0.7em;
    padding: 25px 0 0;
    color: #485462;
    font-family: "Noto Sans", sans-serif;
}

#footer ul {
	padding: 0;
}

#footer li {
	display: inline;
	margin: 0 10px 0 0;
}

#footer a {
    border-bottom: none;
    color: #848d96;
}

@media screen and (max-width: 900px) {

body {
    flex-wrap: wrap;
    font-size: 16px;
}

#header {
    flex: 0 0 100%;
    height: 20vh;
}

#content {
    padding: 25px;
}

}
