* {
  padding: 0;
  margin: 0;
}

.container {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow-x: hidden;
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-columns: 100vw;
  grid-template-rows: repeat(3, min-content);
  grid-gap: 0rem;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 950px) {
  .container {
    position: absolute;
    top: 0px;
    left: 0px;
    overflow-x: hidden;
    display: grid;
    height: 100%;
    width: 100%;
    grid-template-columns: 100vw;
    grid-template-rows: repeat(3, min-content);
    grid-gap: 0rem;
    padding: 0;
    margin: 0;
  }
}

.header {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    z-index: 0;
    width: 100%;
    aspect-ratio: 1920 / 614;
}

@media screen and (max-width: 950px) {
  .header {
    aspect-ratio: 1920 / 1080;
  }
}

.footer {
    position: relative;
    grid-column: 1;
    grid-row: 3;
    z-index: 0;
    width: 100%;
}

/*  --- BODY ---  */

.karte {
    grid-row: 2;
    grid-column: 1;
    height: 840px;
    overflow: hidden;
    padding: 30px;
    position: relative;
    width: calc(100% - 60px);
    z-index: 2;
}

@media screen and (max-width: 950px) {
  .karte {
    grid-row: 2;
    grid-column: 1;
    position: relative;
    overflow: hidden;
    padding: 20px;
    width: calc(100% - 40px);
    height: 400px;

  }
}




*::-webkit-scrollbar {
  display: none;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}
