@font-face {
  font-family: BebasNeue;
  src: url(BebasNeue-Regular.ttf);
  font-weight: bold;
}
@font-face {
  font-family: Monsterrat;
  src: url(Montserrat.ttf);
  font-weight: regular;
}
@font-face {
  font-family: Raleway;
  src: url(./fonts/Raleway/Raleway-VariableFont_wght.ttf);
  font-weight: regular;
}

a, p, ul{
  font-family: Raleway;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
h2, h3, h4 {
  font-family: Raleway;
  text-decoration: none;
  font-weight: 800;
}
body {
  margin: 0;
  height: 100vh;
  width: 100vw;
  background-image: url(Alm-Dialog.png);
  background-position: 50% 50%;
}

header, footer {
  padding: 30px;
  left: 0;
  width: 100%;
  display: flex;

  align-items: center;
  box-sizing: border-box;
}
header {
  top: 0;
  justify-content: space-around;
}
footer {
  bottom: 0;
  justify-content: space-between;
}
/* MITTE */
.main_container {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.mid {
  transition: all .3s ease-in;
}
.mid a {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
}
.at {
  font-weight: 600;
}
.info {
  width: 50%;
  align-self: baseline;
  padding-left: 5vw;
}
.info a {
  margin-top: 50px;
}
.back {
  position: relative;
  bottom: 1px;
  font-weight: 600;
}

.at {
  position: relative;
  bottom: 3px;
  font-weight: 800;
  padding: 3px;
}
.mid:hover {
  letter-spacing: 1px;
  text-shadow: 0px 5px 20px red, 0px -5px 20px blue;
}

.sociallinks {
  height: 20px;
  width: 20%;
  display: flex;
  justify-content: space-around;
}
.sociallinks svg{
  height: 100%;
  max-width: 20px;
  transition: all .3s;
}
path {
  transition: all 0.3s;
}
svg:hover .st0 {
  fill: #000;
}
svg:hover .st1 {
  fill: #fff;
}
.sociallinks svg:hover  {
  filter: drop-shadow(0px 10px 10px red) drop-shadow(0px -10px 10px blue);
}

p {
  padding: 0;
  margin: 0;
}
.backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;

}
.bg2 {
  background-image: url(./img/bio.jpg);
  background-position: center;
  background-size: cover;
}
.bg1 {
  background-image: url(./img/mobile-bg.jpg);
  background-position: center;
  background-size: cover;
}

video {
  min-height: 100%;
  min-width: 100%;
  position: 50%;
}
.IMPRESSUM h2, h3, h4, p, ul {
  color: #fff;
}
.mainimp {
  padding: 100px 0;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: #222;
}
.mainimp header,.mainimp footer{
  position: fixed;

  background-color: #111;
}
.IMPRESSUM {
  max-width: 75%;
}
@-ms-viewport{
  width: device-width;
}






/* _______________________RESPONSIVE _________________*/
@media (max-width: 768px){
body {
  background-color: #000;
  max-height: -webkit-fill-available;
}
header {
  padding: 10px;
}

.backdrop {
  background-position: 80%;
  opacity: 0.5;
}
.backdrop video {
  display: none;
}
a, p {
  font-size: 14px;
}
.mid a {
  font-size: 18px;
  font-weight: 400;
}
.at {
  font-weight: 400;
}
.info {
  width: 90%;
}
footer {
  position: relative;
  align-self: flex-end;
  flex-direction: column;
  height: 15%;
  padding: 15px;
}
.imprint {
  order: 2;
}
.sociallinks {
  order: 1;
  width: 70%;
}
.pmp{
  order: 3;
}



/* Animation

@keyframes pulse {
  0% {
    text-shadow: 0px 10px 5px red, 0px -10px 5px blue;
  }
  50% {
    text-shadow: 0px 20px 200px red, 0px -20px 200px blue;
  }
  100% {
    text-shadow: 0px 10px 5px red, 0px -10px 5px blue;
  }
}
