body {
    background-color: #EEEEEE;
    font-family: 'Roboto', sans-serif;
    margin: 40px auto;
    max-width: 650px;
    line-height: 1.6;
    font-size: 18px;
    color: #444;
    padding: 0 10px;
}

h1, h2, h3 {
    line-height: 1.2;
}

a {
    color: black;
}

.invisible {
    font-size: 0;
    line-height: 0;
}

.header h1 {
    text-align: center;
    margin: 20px 0 10px 0;
}

.header h1 a {
    text-decoration: none;
    color: black;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border-top: black solid 1px;
    margin: 0 50px 0 50px;
}

.menu .active {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.menu-item {
    margin: 10px 50px 10px 50px;
    text-decoration: none;
    color: black;
    position: relative
}

.menu-item:after {
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: black;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.menu-item:hover:after {
    width: 100%;
    left: 0;
}

.hero {
    margin: 20px 20px 20px 20px;
    display: block;
}

.hero img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

.socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    /*background-color: blue;*/
}

.socials a {
    text-decoration: none;
    color: black;
    font-size: 30px;
    margin: 0 8px 0 8px;
}

.grow {
    transition: all .2s ease-in-out;
}

.grow:hover {
    transform: scale(1.25);
}

.portfolio-entry-ext .entry-title {
    
}

.portfolio-entry-ext .entry-title a {
    text-decoration: none;
    color: #444;
}

.portfolio-entry-ext .entry-title h3 {
    margin-block-end: 0;
    margin-block-start: 0;
    margin: 30px 0 8px 0;
}
.portfolio-entry-ext .entry-body {
    margin-left: 10px;
}

.portfolio-entry-ext .entry-body a {
    font-size: 14px;
}

.portfolio-entry-ext .author {
    font-size: 14px;
    font-style: italic;
}


