body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  color: white;
  font-family: monospace;
}

.parallax {
  height: 100vh;
  
  background-attachment: fixed;
  background-position: center;
  /* background-repeat: no-repeat; */
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

.title {
  font-size: 40px;
  font-weight: bold;
}

.subtitle {
  font-size: 15px;
  font-weight: normal;
  margin-top: 10px;
}

.parallax1 {
  background-image: url('img/pict1.jpg');
}

.parallax2 {
  background-image: url('img/pict2.jpg');
}

.black-block {
  background-color: black;
  font-style: italic;
  text-align: center;
  padding: 80px 20px;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 2;
  position: relative;
  box-shadow: 0 0 30px 15px rgba(90, 82, 82, 0.7);
}