/*
 *  Insel-Monarchie.de, das Browser Game
 * 
 *  PHP Version 8
 * 
 *  Kategorie:            Insel-Monarchie.de
 *  Paket:                Admintool / Datentool
 *  Author:               Michael Hamann [KaMi] (kami@insel-monarchie.de)
 *  ------
 *  Created Date:         Sunday December 29th 2024
 *  Last Modified:        Sunday December 29th 2024 06:51:29
 *  ------
 *  Copyright:            2006 - 2024 Insel-Monarchie.de
 *  Lizenz:               https://www.insel-monarchie.de/license.txt
 *  Link:                 https://www.insel-monarchie.de
 * 
 *  -----------------
 *  Header-Shortcut:       CTRL + ALT + H / 2x Drücken
 * 
 */

.header {
    position: relative;
    width: 100%;
  }

  .header_row {
    height: 15px;
    background: url("../images/balken.png");
    background-repeat: repeat-x;
    background-size: auto 100%;
  }
  
  .header_mid {
    height: 100px;
    position: relative;
    background: url("../images/mauer.png");
    background-repeat: repeat-x;
    background-size: auto 100%;
  }  

  .header_logo {
    position: absolute;
    /* Absolute Positionierung */
    top: 50%;
    /* Vertikale Zentrierung */
    left: 50%;
    /* Horizontale Zentrierung */
    height: 90px;
    transform: translate(-50%, -50%);
    /* Exakte Zentrierung */
    display: block;
    z-index: 10;
    /* Stellt sicher, dass es über dem Hintergrund liegt */
  }
  
  @media screen and (max-width: 768px) {
    .header_logo {
      height: 60px;
    }
    .header_row {
      height: 10px;
    }
    .header_main {
      height: 80px;
    }
  }
