
 .text-section {
   display: flex;
   flex-direction: column;
   justify-content: center;
   margin-left: auto;
   margin-right: auto;
   max-width: 60rem;
   position: relative;
   padding: 2rem 2rem 3rem 2rem;
 }
 
 @media screen and (max-width: 575px) {
   .text-section {
     width: 100vw;
     padding: 1rem;
   }
 }

 
 .text-section h1 {
   font-size: 80px;
   margin-top: 30vh;
 }
 
 .text-section p {
   font-size: 1.2rem;
 }

 .text-section img {
   border-radius: 5px;
 }

 .big-container {
   min-height: 600vh;
 }
 

 
/* Code for fixed media with scrolling text over */


.Block {
   line-height: 1.5;
   min-height: 100vh;
   overflow: hidden;
   position: relative;
 }
 
 
.Block-media {
  height: 100%;
  left: 0;
  max-height: 100vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
}
.Block-media.is-fixed {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  max-height: none;
}
.Block-media > * {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

 .Block-content {
   display: flex;
   flex-direction: column;
   /* Set where the text should be placed in its container */
   justify-content: center;
   margin-left: auto;
   margin-right: auto;
   /* Set max width for text over media */
   max-width: 70%;
   /* Adjust to set the distance between text slides */
   min-height: 80vh;
   position: relative;
   width: calc(100% - 1.875rem);
   z-index: 1;
 }
 
 .Block-content p {
  color: rgb(3, 3, 3);
  background-color: rgba(255, 255, 255, 0.9);  
  font-size: 1.7rem;
  line-height: 1.8;
  padding: 3rem; 
  text-align: left;
 }

 @media screen and (max-width: 575px) {

  .Block-content p  {
    padding: 2rem !important;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 810px) {
  .Block-content p  {
    padding: 1.52rem !important;
    font-size: 1.5rem;
    width: 100%;
  }
}

.Block-content blockquote {
	font-size: 1.8rem;
	border: 1px solid rgba(222, 226, 230, 0.54);
	border-left: 0.5rem solid rgba(0, 123, 255, 0.54);
	color: rgb(255, 255, 255);
	background-color: rgba(3, 3, 3, 0.8);  
	font-style: italic;
	line-height: 1.6;
	margin: 1.875rem auto;
	padding: 4.6875rem 1.875rem 4.875rem 4.6875rem;
	position: relative;
	width: 100%;
  }
  .Block-content blockquote:before {
	font-size: 6.875rem;
	color: rgba(0, 123, 255, 0.54);
	content: "“";
	font-family: "Noto Serif", "Georgia", "Times New Roman", "Times", serif;
	font-size: 5.5rem;
	height: 3.75rem;
	left: 0.9375rem;
	line-height: 1;
	max-width: 3.75rem;
	position: absolute;
	text-align: inherit;
	top: 0.9375rem;
	width: 100%;
  }
  .Block-content blockquote:after {
	content: "";
  }
  .Block-content blockquote-footer {
	font-size: 100%;
	color: black;
	display: block;
	font-style: normal;
	font-weight: 800;
	padding-top: 6rem;
	margin-top: 1rem;
	padding: 0;
  }
  .Block-content blockquote-footer:before {
	content: "— ";
  }
  blockquote-footer {
    font-size: 100%;
    color: black;
    display: block;
    font-style: normal;
    font-weight: 800;
    padding-top: 6rem;
    margin-top: 1rem;
    padding: 0;
    }
    blockquote-footer:before {
    content: "— ";
    }
  
  @media screen and (max-width: 575px) {
    .Block-content blockquote {
      font-size: 1.5rem;
    }
  }
  @media screen and (max-width: 810px) {
    .Block-content blockquote {
      font-size: 1.5rem;
    }
  }
  
 .Media video,
 .Media img {
   background-position: 100%;
   background-repeat: no-repeat;
   background-size: cover;
   height: 100%;
   left: 0;
   object-fit: cover;
   position: absolute;
   width: 100%;
 }
 

 .article {
   padding: 2rem;
 }

 .article p {
   padding: 2rem;
 }
