﻿    /**
    * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
    * http://www.cssportal.com
    */
    body,td,th {
    font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
    font-size: 28px;
    color: #FFFFFF;
    font-weight: normal;
}
body {
    background-color: #171717;
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}
a {
    font-size: 28px;
    color: #CFDF0B;
    font-weight: bolder;
}
a:link {
    text-decoration: none;
    color: #5f7ba1;
}
a:visited {
    text-decoration: none;
    color: #5f7ba1;
}
a:hover {
    text-decoration: underline;
    color: #FFFFFF;
}
a:active {
    text-decoration: none;
    color: #5f7ba1;
}
h1 {
    font-size: 40px;
}
    .responseImage img{
 max-width:100% !important;
 height:auto;
 display:block;
}
	#ganzgroß
{
font-size:100px;
}
	  /* Allgemeine Styles */
  body {
    margin: 0;
    padding: 0;
  }

  /* Menü-Styling */
  header {
    background-color: #242424;
  }

  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav ul li {
    position: relative;
  }

  nav ul li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
  }

  nav ul li:hover > a {
    background-color: #000000;
  }

  nav ul ul {
    position: absolute;
    top: 100%;
    display: none;
    background-color: #242424;
  }

  nav ul li:hover > ul {
    display: inherit;
  }

  nav ul ul li {
    width: 300px;
    float: none;
    display: list-item;
    position: relative;
  }

  nav ul ul ul li {
    position: relative;
    top: -60px;
    left: 200px;
  }

  /* Anpassungen für mobile Ansicht */
  @media (max-width: 768px) {
    nav ul li {
      position: static;
    }

    nav ul ul {
      display: none;
      position: static;
      background-color: #242424;
    }

    nav ul ul li {
      width: 100%;
    }

    nav ul ul ul li {
      position: static;
      top: 0;
      left: 0;
    }
  }
.layout {
  width: 360px;
  height: 800px;

  display: grid;
  grid:
    "sidebar body" 30%
    / auto 1fr;
  gap: 8px;
}

.sidebar { grid-area: sidebar; }
.body { grid-area: body; }