html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  background: -webkit-linear-gradient(top right, #4a4a4a 0%, #111313 100%);
  background: -o-linear-gradient(top right, #4a4a4a 0%, #111313 100%);
  background: linear-gradient(to bottom left, #4a4a4a 0%, #111313 100%);
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
}

.wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .wrapper {
    align-items: flex-start;
  }
}

.kunst {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  z-index: 1;
}
.kunst img {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .kunst {
    width: 125%;
  }
}

.content {
  position: relative;
  text-align: end;
  padding: 6rem;
  z-index: 10;
}
.content h2 {
  color: #ef7d00;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.content p {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4;
}
.content p.light {
	font-size: 1.125rem;
	color: #d2c0b5;
}	
@media only screen and (max-width: 767px) {
  .content {
    padding: 2rem;
    text-align: center;
  }
}

.logo {
  position: absolute;
  bottom: 6rem;
  right: 6rem;
  z-index: 2;
}
.logo img {
  width: 214px;
}
@media only screen and (max-width: 767px) {
  .logo {
    bottom: 2rem;
    right: 2rem;
  }
}
