/*
body {
    background: linear-gradient(to right top, $button-border 50%, $button-background 50%);
    background-size: 100% calc(100% - 100vh + #{5px});
    background-repeat: no-repeat;
}

body:before {
    content:'';
    position: fixed;
    top: 5px;
    bottom: 0;
    width: 100%;
    z-index: -1;
    background: $light;
}
 */

.title-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 10px;

    .title {
        font: bold 37px Heliotrope;
    }

    .menu {
        float: right;
        margin-top: 11px;
        font-size: 29px;
        ul {
            list-style-type: none;
            margin: 0px;
            padding: 0px;
        }
        li {
            display: inline-block;
            padding-left: 15px;
        }
    }
    a {
        text-decoration: none;
        color: inherit;
    }
    a:visited {
        color: inherit;
    }
    border-bottom: 2px solid;
    @media (max-width: 835px) {
    	text-align: center;
	.menu {
            float: none;
            ul {
                padding: 5px 0px 5px;
            }
            li {
                padding-left: 0px;
                padding-right: 15px;
            }

        }
    }
}
