body {background-color:#000; margin: 0; padding: 0;}

#heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  margin-top: -30px;
}

#heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* 

.nav_div {
  width: 25%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 99%;
} */

.logooff {
  position: relative;
  z-index: 1;
  width: 550px;
  height: auto;
  margin-bottom: 10px;
}

.layer {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 550px;
  height: auto;
}


/* Desktop (größer als 1024px) */
@media screen and (min-width: 1025px) {

  #heading {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .logooff {
    position: relative;
    z-index: 1;
    width: 400px;
    height: auto;
	margin-top:25px;
    margin-bottom: 0;
  }

  .layer {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 30%;
    height: auto;
  }
}

/* LOGO und LAYER */

/* Grundlegende Stile (Mobile-First) */
.logooff {
  content: url('logo.png');
}

.layer {
  content: url('layer.png');
}

/* Kleine Smartphones (bis 480px) */
/* Handy Hoch */
@media screen and (max-width: 480px) {
  .logooff {
    content: url('logo.png');
  }

  .layer {
    content: url('layer.png');
  }
}

/* Tablets und kleine Desktops (481px bis 1024px) */
/* Tablet Hoch und Quer - Handy Quer */
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .logooff {
    content: url('logo_2.png');
  }

  .layer {
    content: url('layer.png');
  }
}

/* Desktop (größer als 1024px) */
@media screen and (min-width: 1025px) {
  .logooff {
    content: url('logo_2.png'); width: 400px;
  }

  .layer {
    content: url('layer.png'); width: 400px;
  }
}


#ip_display_container {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-right: 24px;
    background-color: #000;
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    width: fit-content;
}

.ip_label {
    color: #d5d5d5; /* Farbe für das Label */
    font-weight: 700;
}

.ip_value {
    color: #ffb300; /* Farbe für den Wert (abweichend zum Label) */
    font-family: monospace;
    font-size: 20px;
    font-weight: 700;
}