html {
    font-size: 62.5%;
    font-family: 'Open Sans', sans-serif;
    background: #222;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
}


#header {
    background: #333;
    padding: 1rem 0;
    /* border-bottom: 1px solid #eee; */
    margin-bottom: 10px;
    display: flex;
}

#header a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 300;
    margin-left: 1rem;
    padding: 1rem 0.5rem;
    /* outline: 1px solid #fff; */
    border-radius: 5px;
    transition: all 0.3s ease;  
}

.hover-gradient-bg:hover {
    background-image: -webkit-linear-gradient(45deg, #f3ec78, #af4261);
    color: white;
}   

#header a:not(.hover-gradient-bg):hover {
    color: #333;
    background: #fff;

}



#header-right {
    margin-left: auto;
    display: flex;
    margin-right: 1rem;
}

#header-left {
    display: flex;
    margin-left: 1rem;
}

.gradient-text {
    background: -webkit-linear-gradient(45deg, #f3ec78, #af4261);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}