* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: cousine, monospace;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100%;
  min-height: 400vh;
}

/* RGB Layers */
.rgb-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.rgb-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 175vh;
  background-image: url('carbon.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  mix-blend-mode: screen;
}

.red-layer {
  background-color: rgba(255, 0, 0, 0.2);
  filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" values="1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/></filter></svg>#filter');
  filter: brightness(1.5) contrast(1.2);
}

.green-layer {
  background-color: rgba(0, 255, 0, 0.2);
  filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" values="0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0"/></filter></svg>#filter');
  filter: brightness(1.5) contrast(1.2);
}

.blue-layer {
  background-color: rgba(0, 0, 255, 0.2);
  filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0"/></filter></svg>#filter');
  filter: brightness(1.5) contrast(1.2);
}

/* Content Sections */
.content {
  position: relative;
  z-index: 1;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-align: center;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

h1 {
font-family: 'Ropa Sans', sans-serif;

 font-size: 5rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;

   text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

h2 {
    font-family: 'Ropa Sans', sans-serif;
 font-size: 3.5rem;
  margin-bottom: 1rem;
 text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

p {
font-size: 16px;
  font-family: 'Cousine', monospace;
  line-height: 1.5;
  max-width: 600px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}






@media screen and (min-width: 320px) {
 
  p {
     font-size: 5vw;
  }
}  

@media screen and (min-width: 853px) {

}  

@media screen and (min-width: 640px) {

} 

@media screen and (min-width: 480px) {
  p {
     font-size: 24px;
  }
}


















