/**
 * 
 * michaelhamann.org, Portfolio
 * 
 * PHP Version 8
 * 
 * @category    Portfolio
 * @package     portfolio
 * @author      Michael Hamann <info@michaelhamann.org>
 * @copyright   2024 michaelhamann.org
 * @link        https://www.michaelhamann.org
 * 
 */

.header {
    position: relative;
    width: 100%;
    color: #FFF;
  }

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

  .header_logo {
    position: absolute;
    /* Absolute Positionierung */
    top: 50%;
    /* Vertikale Zentrierung */
    left: 50%;
    /* Horizontale Zentrierung */
    height: 30px;
    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: 30px;
    }
    .header_row {
      height: 0px;
    }
    .header_mid {
      height: 80px;
    }
  }
