* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #333333;
    color: #f1f8ff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Header */
header {    
    text-align: center;
    margin: 2rem 0;
}

header > h1 {
    font-size: 48px;
}


/* Contents */
.contents {
    margin: 5rem;
}

.contents > h1 {
    font-size: 36px;    
    margin-bottom: 2rem;
}

li {
    margin-bottom: 5px;
    font-size: 18px;
}

a {
    text-decoration: none;
    color: #f1f8ff;
    transition: 0.5s ease-in-out;
}

a:hover {
    color: #ce9178;
    transition: 0.5s ease-in-out;
}