/*Primary color      : FFB471 FF9F49 FB8720 C66209 8E4300*/
/*Secondary color #1 : FFD171 FFC449 FBB520 C68909 8E6000*/
/*Secondary color #2 : 6B87D5 4464BC 2649A9 143285 0A215F*/
/*Complementary color: 5CC3CC 33A4AE 158E99 076F78 014F56*/
/*Allgemeine Einstellungen*/
* {
    margin: 0px;
    padding: 0px;
}
html {
    height: 100%;
}
body { /*Standard Einstellungen für die gesamte Site*/
    height: 100%;
    color: #8E4300;                  /*Standard text color*/ 
    background-color: white;         /*Standard background color*/
    /*background-color: #FF9F49; */  /*Standard background color*/
    font-family: Arial, sans-serif, Helvetica; /*Standard font; alternativee if not available*/
    /*font-family: Vivaldi, "Brush Script", fantasy; */
    font-weight: normal;             /*Not bold, normal*/
}
div {
}

/*Darstellung von Überschriften*/
h1 {
    text-align: center;
    vertical-align: top;
    font-family: Vivaldi, "Brush Script", fantasy; 
    font-size: 50px;
    font-weight: bold;
}
h2 {
    text-align: center;
    vertical-align: top;
    font-size: 22px;
    font-weight: bold; 
}
h3 {
    text-align: left;
    vertical-align: top;
    font-size: 16px;
    font-weight: bold; 
}
h4 {
    text-align: left;
    vertical-align: top;
    font-size: 14px;
    font-weight: bold; 
}
h5 {
    text-align: left;
    vertical-align: top;
    font-size: 12px;
    font-weight: bold; 
}

/*Einteilung des Browserfensters mittels einer table*/
table {
    width: 100%;  /*Table shall cover the full screen*/
    height: 100%; /*Table shall cover the full screen*/
    border-collapse: collapse;       /*Benachbaerte Rahmen werden zusammengelegt*/ 
}
td {
    padding: 4px;
    border: 0px solid black;         /*Set to 1px to view borders*/
}

/*Ungenutzte Bereiche Table-Bereiche des Browserfensters (Tabellenzellen)*/
#screenlefttop {
    background-color: #FB8720;
    padding-left: 0px;
}
#screenrighttop {
    background-color: #FB8720;
}
#screenleft {
}
#screenright {
}

/*Kopfbereich der Site (Tabellenzelle)*/
#tablehead {
    width: 1000px;           /*Determines the used width of the entire page content*/
    height: 0px;             /*Force height to be depending on content*/
    text-align: center;
    vertical-align: top; 
    background-color: #FB8720;
}
#logo {
}

/*Menüleiste oben (Tabellenzelle)*/
#menutop {
    height: 0px;             /*Force height to be depending on content*/
}
#menutop ul {
/*    display: flex;   */        /**/
/*    flex-direction: column;*/
    padding: 6px;            /*Standard Abstand des Inhalts vom Rahmen außen an allen 4 Seiten*/
    text-align: center;      /*Menütexte mittig darstellen*/
    border: 0px solid black; /*Set to 1px to view border*/
}
#menutop li {
    display: inline-block;
/*    list-style: none;*/
    width: 238px;           /*Breite der Textfläche im Menü-Item. 238 ist Maximum in Google Chrome*/
    margin-left: 1px;       /*Abstand der Menü-Items voneinander*/
    margin-right: 1px;      /*Abstand der Menü-Items voneinander*/
    padding-left: 0px;    /*Abstand der Textfläche im Menü-Item von dessen Rand links*/ 
    padding-right: 0px;   /*Abstand der Textfläche im Menü-Item von dessen Rand rechts*/
    font-size: 18px;
    color: #C68909;
    background-color: #FFD171;
    border: 0px solid black; /*Set to 1px to view border*/
}
@media (min-width: 45em) {
  nav ul {
    flex-direction: row;
  }
  nav li {
    font-size: 1em;
  }
}
#menutop p {/* Keine ahnung was das p bewirkt, Werte haben keine Auswirkung*/
/*    padding: 6px 6px 6px 200px;*/
 /*   line-height: 20em;*/
}
#menutop a {
    display: block;            /*Der Text soll die gesamte Breite des Feldes einnehmen*/
    text-decoration: none;     /*Der Hyperlink soll nicht unterstrichen sein*/
    color: #C68909;
    background-color: #FFD171;
    transition: all .25s ease-in; /*Bewirkt eine zeitliche Eleganz bei :hover und :focus durch "Nachglühen"*/
}
#menutop a:focus {
    color: #FFD171;            
    background-color: #C68909; 
}
#menutop a:hover {
    color: #FFD171;            /*Mouse-over*/
    background-color: #8E6000; /*Mouse-over, dunklen Hintergrund*/
}
#menutop a:active {
    color: #FFD171;            
    background-color: #C68909; 
}

/*Navigationszeile (Tabellenzelle)*/
#navi {
    text-align: left;
    vertical-align: top;
    font-size: 12px;
}

/*Übersichts-Menü unten am Fuß der Seite (Tabellenzelle)*/
#menubottom {
    width: 150px;
    font-size: 16px;
    height: 30;
    padding-left: 95px;
    vertical-align: top;
    text-align: left;
    background-color: #6B87D5;
}
#menubottom a {
    color: #0A215F;
    text-decoration:none;
}
#menubottom a:hover {
    color: orange;
}

/*Fußzeile mit Copyright (Keine Tabellenzelle)*/
#footer {
    font-size: 12px;
    height: 30;
    vertical-align: bottom;
    text-align: center;
}
#footer a {
    text-decoration:none;
}
#footer a:hover {
    color: orange;
}

#startseite {
    text-align: center;
    vertical-align: top;
    font-size: 14px;
}
#home_img1 {
    align: center;
    width: 540px;
    height: 324px;
}

#products {
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

#news {
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

#company {
    text-align: center;
    vertical-align: top;
    font-size: 14px;
}

#agb {
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

#datenschutz {
    width: 900px;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

#impressum {
    width: 900px;
    text-align: left;
    vertical-align: top;
    font-size: 12px;
}
