.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #BCB8B1;
    z-index: 1;
}
body{
    background-color: #F4F3EE;
}
.header p{
    font-family: "Syne";
    font-size: 28px;
    padding-left: 18px;
    padding-right: 18px;
    cursor: pointer;
    letter-spacing: 5px;
}
.left-side{
    display: flex;
    padding-left: 10px;
}
.left-side a{
    color: inherit;
    text-decoration: none;
}
.left-side p{
    font-weight: bolder;
    transition: transform .5s, text-shadow .5s;

}

.logo:hover{
    transform: scale(1.2);
    text-shadow: 0px 10px 10px rgba(0, 0, 0, 0.7);

}
.right-side{
    display: flex;
    flex-direction: row;
    padding-right: 10px;
}
.right-side p{
    font-weight: 600;
    transition: transform .5s;
    font-size: 28px;
}
.right-side a{
    text-decoration: none;
    color: inherit;
}

.right-side p:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 600px){
    .header p{
        font-size: 12px;
        font-weight: 400;
        padding-left: 4px;
        padding-right: 4px;
        letter-spacing: 1px;
    }
}