*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body{
    height: 100%;
    font-family: 'Offside', cursive;
}


nav{
    width: 100%;
    background-color: #A05;
}

nav ul{
    margin-top: 0;
	list-style: circle;
	padding-left: 0;
	text-align: right;
	height: 50px;
}

nav ul li{
    display: inline-block;
	padding-left: 30px;
	padding-right: 30px;
	line-height: 50px;
	font-size: 18px;
	font-weight: 100;
}

nav ul li a{
    color: white;
	text-decoration: none;
}

.content-wrapper{
    padding: 12.8% 10%;
    text-align: center;
}

img:hover{
    cursor: pointer;
}

footer{
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
    position: fixed;
    bottom: 0;
    font-size: small;
}