/* SET */

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Melange;
    src: url('typo/Melange-Regular.woff2') format('woff2');
    font-weight: lighter;
}

@font-face {
    font-family: Melange;
    src: url('typo/Melange-Bold.woff2') format('woff2');
    font-weight: bold;
}

html,
body {
    min-height: 100vh;
    font-family: 'Melange';
}

header {
    height: 40px;
}

section {
    margin: 10px;
    margin-right: 30%;
}


/* TYPO STYLES */

h3 {
    display: inline;
    font-weight: lighter;
    font-size: 2vw;
    color: #000000;
}

h6 {
    display: inline;
    font-weight: lighter;
    font-size: 2vw;
    color: #9887F8;
}


/* TOP_NAVIGATION */

.back_menu3 {
    list-style: none;
    position: fixed;
    margin-left: 10px;
    margin-top: 10px;
}

.back_menu3 a {
    text-decoration: none;
    font-size: 2vw;
    font-weight: lighter;
    color: #9887F8;
    transition: color linear 0.15s;
}

.back_menu3 a:hover {
    color: #000000;
}

@media screen and (max-width:770px) {
    header {
        height: 50px;
    }
    h3 {
        font-size: 4vw;
    }
    h6 {
        font-size: 2vw;
    }
    .back_menu3 a {
        font-size: 4vw;
    }
    section {
        margin-right: 10%;
    }
}

@media screen and (max-width:400px) {
    header {
        height: 25px;
    }
}