* {
    box-sizing: border-box;
}
body {
    font-family: 'Work Sans', sans-serif;
    background-color: #eee;
}


.container {
    background-color: #fff;
    box-shadow: 1px 1px 3px rgba(0,0,0.3);
    margin-top: 150px;
    padding: 0;
}

header {
    color: #333;
    text-align: center;
    background-color: #feca57;
}

header img {
    height: 200px;
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #333;
    margin-top: -100px;
}

header h1 {
    text-transform: uppercase;
    margin-top: 20px;
    line-height: 100px;
    margin-bottom: 0;
}

main ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

main ul li {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 70px;
    border-bottom: 1px solid #333;
}

main ul li:last-child {
    border-bottom: none;
}

main ul li a {
    color: #333;
    display: block;
    padding: 0 20px;
    transition: color .3s;
}

main ul li a:hover {
    text-decoration: none;
}