body {
  margin: 0;
  color: #fff;
  font-family: "Lato", sans-serif;
  /*background: #161216;*/
  background: linear-gradient(#140e14, #0e0c0e);
  background-attachment: fixed;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

#namae {
  display: flex;
  background: -webkit-linear-gradient(left, #bbbbbb, #fdfdfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
}

.header,
.footer {
  width: 100%;
  height: auto;
  backdrop-filter: blur(.4rem);
  z-index: 10;
}

.header {
  display: flex;
  flex-direction: row;
  position: fixed;
  height: 3rem;
  align-items: center;
  margin: 0;
  background: #fdfdfd0a;
}

.header #namae {
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  padding-left: 1.5rem;
}

.header span {
  width: 100%;
  height: 1.5px;
  background: #fff;
  border-radius: 100px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.block {
  padding: 1vw;
  display: flex;
  flex-direction: row;
  background-color: #00000018;
  backdrop-filter: blur(.4rem);
  overflow: hidden;
  border-radius: .5rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
  width: 80%;
}

.block .part p {
  margin-top: 0;
}

.block.one {
  position: relative;
}

.block.two {
  position: relative;
  gap: 7rem;
  padding-bottom: 20rem;
}

.preblock {
  width: 100%;
  height: auto;
  display: flex;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  image-rendering: -webkit-optimize-contrast !important;
  justify-content: center;
}

.preblock.one {
  background: url('/src/landscape.jpg');
}

.preblock.two {
  background: url('/src/landscape2.jpg');
}

.block .part {
  width: 80%;
  height: auto;
  max-height: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: justify;
  padding-right: 20px;
}


.textblock {
  width: auto;
  display: flex;
  flex-direction: column;
}

.textblock h1 {
  text-transform: uppercase;
  margin: 0;
  width: fit-content;
}

#line1 {
  font-size: 3rem;
}

#line2 {
  margin-top: -3%;
}

#rembase {
  font-size: 1rem;
  position: absolute;
}

.showcaseimage {
  width: 35%;
  height: auto;
  object-fit: scale-down;
  z-index: 1;
}

@media only screen and (max-width: 870px) {
  .block {
    flex-direction: column-reverse;
    padding: 8vw !important;
  }
  .block.one .part {
    font-size: 1.3rem;
    width: 100%;
    padding: 0;
  }
  .showcaseimage {
    width: 100%;
  }
  .textblock {
    margin-top: 2rem;
  }
}