@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto_regular.eot');
    src: url('../fonts/roboto/roboto_regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto/roboto_regular.woff') format('woff'),
         url('../fonts/roboto/roboto_regular.ttf') format('truetype'),
         url('../fonts/roboto/roboto_regular.svg#Roboto') format('svg');
    font-weight: normal;
    font-style: normal;
}


header{
    position: fixed;
    height: 50px;
    z-index: 2;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0px 2px 5px 0px rgba(32, 32, 32, 0.2);
}

#back{
    float: right;
}

#backbutton{
    border-radius: 26px;   
    border: 1px solid #7654A2;
    width: 150px;
    height: 40px;
    font-family: 'Roboto';
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    margin: 5px;
    color: #7654A2;
}

#backbutton:hover{
    background-color: #7654A2;
    color: #FFF;
}

section{
    top: 50px;
    position: relative;
    color: #3e3e3e;
    font-family: 'Roboto';
    padding: 20px;
}

h2{
    font-size: 3.6rem;
    margin: 40px 0px 40px 0px;
}

h3{
    font-size: 2.8rem;
    margin: 30px 0px 5px 0px;
}
            
p{
    font-size: 1.8rem;
}

@media only screen and (max-width:768px) {
    section{
        top: 0px;
    }
}