/* Fonts */

@font-face {
    font-family: "Roboto-Black";
    src: url("/fonts/Roboto-Black.ttf");
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("/fonts/Roboto-Bold.ttf");
}

@font-face {
    font-family: "Roboto-Light";
    src: url("/fonts/Roboto-Light.ttf");
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("/fonts/Roboto-Medium.ttf");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("/fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "Roboto-Thin";
    src: url("/fonts/Roboto-Thin.ttf");
}

/* Style */

body {
    font: 11px "Roboto-Regular", Helvetica, Arial, sans-serif;
    color: #303030;
    /*
    text-align: center;
     */
    margin: 0;
}

h1 {
    font: 25px "Roboto-Black", Helvetica, Arial, sans-serif;
    margin: 0px;
}

h2 {
    font: 20px "Roboto-Regular", Helvetica, Arial, sans-serif;
    margin-top: 5px;
}

a.mail {
    color: #5c5c5c;
    font: 15px "Roboto-Regular", Helvetica, Arial, sans-serif;
}

a {
    color: #999999;
    text-decoration: none;
    font-size: 12px;
}

.pgp {
    display: block;
    margin-top: 4px;
}

main {
    padding: 50px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    color: #303030;
}

footer a {
    color: #303030;
}

footer a:hover {
    color: #009190;
}

.box {
    padding: 20px;
    margin: 20px;
    border: 1px solid grey;
    border-radius: 4px;
    width: 800px auto;
}

img {
    margin-bottom: 15px;
}

p {
    font-size: 12pt;
}

.button {
    background-color: grey;
    color: white;
    border-radius: 4px;
    font-size: 10pt;
    height: 30px;
    border-style: none;
}

.button:hover {
    background-color: #009190;
    color: white;
    border-radius: 4px;
}

.button-box {
    margin: 10px;
}

code {
    color: #d50000;
    font-size: 11pt;
    background-color: #cecece;
    padding: 5px;
    border-radius: 5px;

}

@media only screen and (max-width: 600px) {
    main {
        padding: 5px;
    }

    img {
        margin-top: 20px;
        margin-bottom: 5px;
    }

    footer {
        background-color: white;
        padding: 10px;
    }
}
