@font-face {
  font-family: modular;
  src: url(../fonts/modular.woff);
}

@font-face {
  font-family: modular-strong;
  src: url(../fonts/modular-strong.woff);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: modular-strong;
  font-size: 2em;
  background: #000;

}

h1, p {
  text-transform: uppercase;
  color: #d6d647;
}

h1 {
  font-size: 3.3em;
  margin-bottom: 0;
  padding-bottom: 0;
}

p {
  font-size: 1.9em;
  margin-top: 10px;
  padding-top: 10px;
}
p.small {
  font-size: 0.6em;
  text-align: right;
  color: rgba(255, 255, 255, 0.2);
}

a {
  color: #d6d647;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

p.small a {
  color: rgba(255, 255, 255, 0.2);
}

.signal {
  color: #d52d39;
}

#myVideo {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; 
  min-height: 100%;
}

.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 5px 5% 50px 5%;
  margin: 0 10% 0 0;
  backdrop-filter: blur(10px);
  overflow: auto;
}

@media screen and (max-width: 600px) { 
    /* Style adjustments for viewports that meet the condition */
    p {
        width: 100%;
        font-size: 20px;
    }
    h1 {
        width: 100%;
        font-size: 2em;
    }
    body {
        width: 100%;
        padding: 20px;
    }
}

@media screen and (max-width: 600px) { 
    
    h1 {
      font-size: 1.65em;
      margin-bottom: 0;
      padding-bottom: 0;
      text-align: center;
    }

    p {
      font-size: 1.05em;
      margin-top: 10px;
      padding-top: 10px;
      line-height: 120%;
      text-align: center;
    }

    p.small {
      text-align: center;
      font-size: 0.5em;
    }

    .content {
      margin: 0;
      padding: 10px 30px;
      width: 100%;
      overflow: auto;
    }

    .umbruch::after {
      content: '\A';
      white-space: pre;    
    }

    #myVideo {
      position: fixed;
      left: 10%;
      top: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%; 
      min-height: 100%;
    }

}