@import url('https://fonts.googleapis.com/css?family=Oswald');

body {
	background: #269CFF;
    font-family: 'Oswald', sans-serif;
    display: flex;
    overflow-x: hidden;
    min-height: 100vh;
    overflow-y: auto;
    border: 10px solid rgba(0, 0, 0, 0.1);
    margin: 0;
    box-sizing: border-box;
    background: url('earth.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

ul {
	list-style: none;
    text-align: center;
    line-height: 2rem;
    margin: 4rem auto;
    padding: 4rem;
    max-width: 571px;
}
li {
	display: inline-block;
    margin: 1rem;
}
li a{
	color: white;
    text-decoration: none;
    font-size: 2.5rem;
    line-height: 4rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7)
}


li:nth-of-type(odd) a {
	color: #d8fbd0;
}

li a:hover, li:hover {
	color: rgba(38, 156, 255, .5);
	cursor: pointer;
}


.pageTitle {
	position: fixed;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    margin: 0;
    color: white;
    bottom: 0;
    background: rgba(38, 156, 255, .8);
    left: 0;
    padding: 0 1rem;
}