body {
    font-family: "Open Sans", sans-serif;
    line-height: 2;
    padding: 0;
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: end;
    max-width: 1200px;
    margin: 0 auto;
}

nav .home{
    margin-right:  auto;
}

nav .home img{
    width: 25px;
}

.nav {
    box-sizing: border-box;
    padding: 1rem;
    position: fixed;
    width: 100%;
    background-color: #ed4933;
}

.nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 1rem;
    font-size: 0.8rem;
}
.nav .menu {
    display:flex;
    gap: 0.2rem;
}

.content, .title > * {
    max-width: 800px;
    margin: 3rem auto;
}

.title {
    background-color: #eee;
    padding: 4rem 0 2rem;
}

.title h1 {
	font-size: 3rem;
  	margin: 0;
}

.blog h2 {
	margin-top: 0;
}

.blog h2 a {
	color: #333;
  	text-decoration: none;
}

.blog .post {
	padding: 2em 0;
  	border-bottom: 1px solid #ccc;
}

#footer {
    text-align: center;
    padding: 2em;
    background: #252525;
    color: #aaa;
}

#footer a {
  color: #ed4933;
  text-decoration: none;
}