@font-face {
    src: url(Lato-Light.ttf);
    font-family: Lato;
}

*{
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

nav a:visited,
nav a:link {
    color: #000;
    text-decoration: none;
}

nav > ul {
    display: inline;
    padding: 0;
}

nav > ul > li {
    display: inline-block;
    list-style: none;
    margin: 0 5px 0 5px;
}

header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0B1014;              /*#343434;    /* darker #2C3333;*/
    padding-left: 10px;
    opacity: 100%;  
    box-shadow: 0 0 10px 0 black;
}

.contactcontent {
    width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contactcontentmobile {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.content {
    width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.logo{
    text-align: center;
    text-align: left;
    padding-top: 20px;
}

.Formbutton {
    background-color: #5086EC;      /*   darker background-color: #2C3333; */           
    border: 1px solid #2c2b2b;
    color: #000;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 22px;
    font-family: Lato;
    border-radius: 15px;
}

.Formbutton:hover {
    background-color:#f7f7f7;
    transition: 0.8s;
    color: black
}

.Formbutton:active {
    background-color:#f7f7f7;
    color: black
}

.Submitbutton {
    display:inline-block;
    padding:10px 10px;
    border: 1px solid #5086EC;
    border-radius: 15px;
    box-sizing: border-box;
    font-weight:400;
    font-family: Lato;
    color:#fff;
    background-color:#5086EC;
    text-align:center;
    position:relative;
}

    .Submitbutton:active {
        top:0.1em;
    }

    body {
        font-size: 25px;
        line-height: 62px;
        font-family: Lato;
        
        /*  for darker    background-color: #2C3333;
        color: #b3b9b3;*/
    }

    p {
        margin: 0.5em 0 0.5em 0;
    }

    article {
        text-align: left;
        /*width: 100%;*/
    }

    .desktop{
        display: none;
    }
/*}*/

@media screen and (min-width: 768px){
    .mobile{
        display: none;
    }

    .desktop{
        display: block
    }
}

