/* Box Model Hack */
* {
     box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}
body{
     font-size: 62.5%;
}
body *{
     text-align: center;
     font-family: "Oswald", sans-serif;
}
h1{
     font-size: 3.5rem;
     background-color: black;
     color: white;
     padding: 2% 0;
}
h1, a {
     font-weight: 200;
     border-radius: 0.5rem;
}
h2{
     font-size: 2.5rem;
}
li {
     list-style: none;
}
ul, ol {
     padding: 4% 0;
     background-color: black;
     color: white;
     border-radius: 2%;
     line-height: 5rem;
     font-size: 2.2rem;
     width: 100vw;
}
img {
     width: 40vw;
     height: auto;
     border-radius: 50%;
}
a {
     text-decoration: none;
     font-size: 1.5rem;
     background-color: black;
     color: white;
     display: block;
     padding: 15px 35px;
     margin: 0 30% 2% 30%;
}
a:hover {
     background-color: white;
     color: black;
     border: 1px solid black;
}

