﻿/* Schritt 1: Schriftart einbinden */
@font-face {
    font-family: 'Arapey';  /* Der Name, mit dem du die Schriftart verwendest */
    src: url('../fonts/Arapey-Regular.ttf') format('truetype');  /* Pfad zur TTF-Datei */
    font-weight: normal;
    font-style: normal;
}

/* Schritt 2: Standard-CSS-Regeln */
* {
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    background: #FFFFFF;
    font-family: 'Arapey', serif;  /* Die Schriftart für den gesamten Text */
    font-size: 20px;
    color: #848484;  /* Hier wird die Schriftfarbe geändert */
}

a {
    color: #404040;
    text-decoration: underline;
    font-weight: 500;    /* Schriftstärke (mittlere Dicke) */
}

ul {
    list-style: none;
}
/* Überschrift 1 (h1) */
h1 {
    font-size: 36px;     /* Schriftgröße */
    font-weight: bold;   /* Schriftstärke */
    color: #585858;      /* Schriftfarbe */
}

/* Überschrift 2 (h2) */
h2 {
    font-size: 26px;     /* Schriftgröße */
    font-weight: 400;    /* Schriftstärke (nicht ganz so dick wie h1) */
    color: #585858;      /* Schriftfarbe */
}

/* Überschrift 3 (h3) */
h3 {
    font-size: 24px;     /* Schriftgröße */
    font-weight: 500;    /* Schriftstärke (mittlere Dicke) */
    color: #585858;      /* Schriftfarbe */
}

/* Überschrift 4 (h4) */
h4 {
    font-size: 18px;     /* Schriftgröße */
    font-weight: normal; /* Schriftstärke (normal) */
    color: #585858;      /* Schriftfarbe */
}
.nav {
    background: #ffffff;
    min-height: 50px;
}

.nav .left {
    float: left;
    margin-left: 1em;
}

.nav .left li {
    border-bottom: 1px solid #f2f2f2;
    font-size: 18px;
    float: left;
}

.nav .left li a {
    display: block;
    padding: 9px 15px;
    line-height: 30px;
}

.nav .left li a:hover {
    background: #f2f2f2;
}

.nav .right {
    float: right;
    margin-right: 1em;
}

.nav .right li {
    border-bottom: 1px solid #f2f2f2;
    font-size: 14px;
    float: left;
}

.nav .right li a {
    display: block;
    padding: 9px 15px;
    line-height: 30px;
}

.nav .right li a:hover {
    background: #f2f2f2;
}

.toggle-nav {
    display: none;
}

.nav-mobile style {
    display: block;
}

@media only screen and (max-width: 640px) {
    .nav {
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .toggle-nav {
        display: block;
        padding: 10px;
        position: absolute;
        right: 10px;
        line-height: 30px;
    }

    .toggle-nav:after {
        content: ' Menu';
    }

    .nav-mobile {
        display: none;
    }

    .style-mobile {
        background: #ffffff;
        top: 51px;
        position: absolute;
        width: 100%;
    }

    .style-mobile li {
        display: block;
        width: 100%;
    }

    .nav .right {
        display: block;
        float: none;
        margin: 0em;
    }

    .nav .left {
        display: block;
        float: none;
        margin: 0em;
    }
}

@media only screen and (min-width: 641px) {
    .nav-mobile {
        display: block !important;
    }
}