body{
    background-color: #FEFCF6;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;  
}

/*s single post page adjustments */
body.single
{
    padding: 1.5rem;
}

.site-description {
    font-weight: bold;
}

.site-header {
    display:flex;
    justify-content: space-between;
    align-items: baseline;
}

.main-navigation {
    width: auto;
}

.single .get-in-touch {
    border-radius: 1rem;
    border: 2px solid black;
    padding: 0.5rem 1rem;
    display: block;       /* makes it take only the necessary width */
    width: fit-content;   /* shrink to content width */
    margin: 0 auto;       /* centers it horizontally */
    background-color: transparent;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.single .get-in-touch:hover {
    background-color: black;
    color: white;
}