body { 
	background: black;
  /*background-image: url("../img/background.png");
  background-repeat: no-repeat;
  background-size: cover;*/
  font-family: TruenoRg;
	overflow-x: hidden;
}

/* font
==============================================*/
@font-face {
  font-family: "TruenoRg";
  src: url("../font/TruenoRg.ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "TruenoRgIt";
  src: url("../font/TruenoRgIt.ttf");
  font-style: normal;
  font-weight: normal;
}

/* type
==============================================*/
a:active {
  color: white;
  text-decoration: underline;
}

a:hover {
  color: white;
  text-decoration: none;
}

a:link {
  color: white;
  text-decoration: underline;
}

a:visited {
  color: white;
  text-decoration: underline;
}

#h-1 {
  font-family: TruenoRg;
	color: white;
	font-size: 2.3vw;
  font-weight: bold;
  line-height: 125%;

  display: flex;
  justify-content: left;
  align-items: left;
}

#h-2 {
  font-family: TruenoRg;
  color: white;
  font-size: 2.5vw;
  line-height: 125%;

  display: flex;
  justify-content: left;
  align-items: left;
}

/* container
==============================================*/
.container {
  bottom: 0;
  left: 0;
  padding-bottom: 2%;
  padding-left: 2%;
  padding-right: 10%;
  padding-top: 2%;
  position: relative; /*  position: fixed;*/
  right: 0;
  top: 0;  

  /*display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;*/

  z-index: 0;
}


/* image
==============================================*/
img {
  position: fixed;
  height: 12vw;
  width: 12vw;
  transform: translate(-50%, -50%);
}

img:hover {
  cursor: pointer;
}


/* imprint
==============================================*/
.imprint {
  color: white;
  font-family: TruenoRg;
  font-size: 1.5vw;
  line-height: 130%;
  /*position: absolute;
    bottom: 3%;
    left: 2%;*/
}


/* download-sticker
==============================================*/

#download-sticker {
  position: fixed;
  z-index: 9999999;
}

#download-sticker a {
  display: block;
}

#download-sticker img {
  position: static;
  height: 12vw;
  width: 12vw;
  filter: drop-shadow(2px 2px 4px black);
}


/* text
==============================================*/
#text{
  color: white;
  display: flex;
  font-family: TruenoRg;
  font-size: 2.3vw;
  line-height: 125%;
  margin: auto;
  padding-top: 2%;
}

#text a:hover{
  text-decoration: none;
}

/* responsive
==============================================*/
@media (max-width: 500px) {

  body {
    overflow-x: hidden;
  }

  .container {
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
  }

  #h-1 {
    align-items: left;
    display: flex;
    font-size: 9vw;
    justify-content: left;
    line-height: 120%;
  }

  img,
  #download-sticker img {
   position: fixed;
   height: 120px;
   width: 120px;
  }

  .imprint {
    font-size: 4vw;
    line-height: 130%;
  }

  #text {
    font-size: 6vw;
    line-height: 140%;
    padding-top: 7%;
  }

}