  /*
  Projekt            :  http ://www.tictactoo.de
  Typ                :  CSS-Datei für Screen - CSS Level 3 valide
  Beschreibung       :  Grundformate für alle Browser
  Erstellt am        :  01.03.2017 von Antonio Di Nisio
  Zuletzt geändert   :  28.02.2021 von Antonio Di Nisio
  Antonio Di Nisio   :  http://www.dinisio.de
  Alle Rechte bei    :  Antonio Di Nisio
  */

/* ---------- Elements Instructions beginning ---------- */

/* a {
   font-weight : bold;
   } */

a:link {
   color : #000000;
   font-weight : bold;
   text-decoration : underline;
   text-decoration-style : solid;
   text-decoration-color : #000000;
   }

a:visited {                /* --- ein Link der einmal angeklickt wurde --- */
   color : #000000;
   }

a:focus {                  /* --- für die Navigation per Keyboard --- */
   color : #000000;
   }

a:hover {                 /* --- ein Effekt mitgeben, der auftritt, sobald die Maus drüberfährt --- */
   color : #0000ff;
   text-decoration-style : solid;
   text-decoration-color : #0000ff;
   text-decoration-line : line-through;
   }

a:active {                 /* --- dem Nutzer die Rückmeldung geben, Du hast gerade diesen Link angeklickt --- */
   color : #c04000;
   text-decoration : none;
   text-decoration-color : #c04000;
   }


  h1 {
   margin : 1px;
   padding : 1px;
   color : #000000;
   font-size : 1.5em;
   text-align : center;
   background-color: #ffffff;
   }

  h2 {
   margin : 1px;
   padding : 1px;
   color : #000000;
   font-size : 1.3em;
   text-align : center;
   background-color: #ffffff;
   }

  h3 {
   margin : 1px;
   padding : 1px;
   color : #000000;
   font-size : 1.1em;
   text-align : center;
   background-color: #ffffff;
   }

  html, head, body                 /* --- sind das Grundgerüst einer website, also wichtig!!--- */
   {
   margin : auto;
   padding : 1px;
   color: #000000;
   font-size: 0.9em;
   font-weight: bold;
   line-height: 100%;
   text-align: center;
   background-color: #efefef;
   font-family: Verdana, Arial, Tahoma, "Century Gothic", Georgia, Times, Helvetica, "Lucida Sans", "Nimbus Sans L", "Bitstream Vera Sans", Swiss, serif, sans-serif;
   }

/* ---------- Elements Instructions end ---------- */

/* ---------- Classes Instructions beginning ---------- */

  .center {
   margin : 0px;
   padding : 5px;
   text-align : center;
   }

/* ---------- Classes Instructions end ---------- */

/* ---------- Ids Instructions beginning ---------- */

  #content {
   margin : auto;                  /* Kurzform für die Außenabstände aller vier Seiten eines Elements */
   padding : 10px;                 /* Kurzform für die Innenabstände aller vier Seiten eines Elementes */
   color : #000000;
   text-align : center;
   background-color: #efefef;
   }

  #main {
   width : 100%;
   text-align : center;
   background-color: #efefef;
   }

/* ---------- IDs Instructions end ---------- */