body {
  background-color: white;
  padding: 0;
  margin: 0;
}

.me-content {
  position: relative;
  min-height: 600px;
  min-width: 1000px;
}

.me-hero {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  min-height: 600px;
  letter-spacing: 1.5px;
}
.me-hero__headline {
  font-family: 'Roboto Mono', monospace;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 46px;
  line-height: 1;
  color: black;
}
.me-hero__headline--accent {
  text-transform: none;
  color: #E3001B;
  font-weight: 700;
}
.me-hero__headline--highlight {
  text-decoration: underline;
  font-weight: 700;
  font-size: 64px;
}

.me-brand {
  position: absolute;
  left: 50%;
  top: 30px;
}
.me-brand__logo {
  background-image: url('logo_me.png');
  width: 250px;
  height: 144px;
  background-size: contain;
  background-repeat: no-repeat;
}

.me-teaser {
  background-color: black;
  box-shadow: 5px 5px 14px 5px rgba(0,0,0,0.3);
  min-width: 200px;
  min-height: 100px;
  position: absolute;
  padding: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.me-teaser__headline {
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  text-decoration-color: #E3001B;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}
.me-teaser__01 {
  right: 0;
  top: 20%;
}
.me-teaser__02 {
  right: 0;
  bottom: 20%;
}
.me-teaser__03 {
  right: 20%;
  bottom: 0;
}
.me-teaser__04 {
  left: 0;
  bottom: 20%;
}
.me-teaser__05 {
  left: 0;
  top: 20%;
}
.me-teaser__06 {
  left: 20%;
  top: 0;
}
.me-teaser__info {
  background-color: #E3001B;
  bottom: 0;
  left: 20%;  
  display: flex;
  color: white;
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 64px;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

.me-impressum {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,.6);
  display: none;
  color: rgba(0,0,0,0.6);
}
.me-impressum__content {
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px;
  width: 600px;
  background-color: white;
  position: relative;
}
.me-impressum__close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}
.me-impressum__text {
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  right: 20px;
  bottom: 10px;
  cursor: pointer;
  text-decoration: underline;
  color: rgba(0,0,0,0.3);
  letter-spacing: 1.5px;
}

@media only screen and (max-width: 992px) {
  .me-content {
    min-height: auto;
    min-width: auto;
    margin: 20px;
  }
  .me-hero {
    height: auto;
    min-height: 400px;
  }
  .me-hero__headline {
    font-size: 24px;
  }
  .me-hero__headline--highlight {
    font-size: 46px;
  }
  .me-brand {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
  }
  .me-brand__logo {
    display: inline-block;
    width: 200px;
    height: 100px;
  }
  .me-teaser {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    top: auto;
    text-align: center;
    margin-bottom: 20px;
  }
  .me-impressum__text {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }
}
