@charset "utf-8";
@font-face {
  font-family: 'Roboto Condensed Light';
  src: url('../font/RobotoCondensed-Light.ttf');
}
*{
  margin:0;
  padding:0;
  background: #000;
}
*:not(input):not(textarea) {
	-ms-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
#wrapper{
  position:fixed;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90vw;
  height: 80vh;
  max-width: 500px;
  max-height: 500px;
}
#logo{
  width: 100%;
  opacity: 0;
}
#logo>img{
  display: block;
  width: 100%;
}
#malerei{
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 2.6rem;
  color:#fff;
  text-align: center;
  padding: 40px 0 0 0;
  opacity: 0;
}
#button{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-family: 'Roboto Condensed Light', sans-serif;
  border:4px solid #fff;
  border-radius: 25px;
  width: 200px;
  height:50px;
  line-height: 50px;
  font-size: 1.8rem;
  text-align: center;
  color:#fff;
  opacity: 0;
}
#button:hover{
  transform: scale(1.05);
  transition: all .3s;
}

