/* Full screen background */
body {
  margin: 0;
  height: 100vh;
  width: 100vw;
  background-image: url("../img/dampf_home.jpg"); /* Replace with your image path */
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
}

/* Black rectangle on the left, vertically centered */
.left-rectangle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  max-width: 377px;
  /*height: 140px;*/
  background-image: url("../img/square.png");
  background-repeat: no-repeat;
  background-size: 103%;
  color: white;
  padding: 26px 32px;
  background-color: black;
/*  border:3px solid red;*/
  /*background-color: red;*/
}

/* Rectangle on top-right corner */
.top-right-rectangle {
  position: absolute;
  top: 0;
  right: 0;
  width: 332px;
  height: 58px;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  margin:35px;
}

/*a.my_btn {
    border: 1px solid red;
    width: 100%;
    display: inline-block;
    height: 100%;
}*/

.my_title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11.5px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 16px;
}

.my_paragraph {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: 10px;
  display: inline-block;
}

.my_jp {
  font-family: 'Orbitron', 'M PLUS 1p', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

body.fonts-loading {
  visibility: hidden;
}

