body{
  margin: 0;
  font-family: sans-serif;
  background: #99911155;
  color: #11100b;
  overflow-x: hidden;
  overscroll-behavior: none;
}
img{
  width: 100%;
}
section {
  margin: 0 auto;
}
section.padtop {
  height: 0vh;
}
section.copy{
  opacity: 0.1;
  height: fit-content;
  margin-top: -50px;
}
h1, h2, h3 {
  text-align: center;
  font-size: 84px;
  text-transform: uppercase;
  color: #f4f4f4;
}

h3 {
  margin-top: .8vh;
}

.content {
  max-width: 600px;
  display: grid;
  grid-template-columns: 100%;
}

.content .left {
  position: relative;
  text-align: center;
  display: grid;
  place-items: center;
}

.content .left p {
  background: #212933;
  color: #f3f3f3;
  position: absolute;
  margin-top: -24%;
  right: 10%;
  padding: 1em;
  border-radius: 15px;
  width: fit-content;
  text-align: center;
  font-size: 11px;
  border: 3px solid yellow;
  /* clip-path: polygon(10% 90%, 90% 90%, 90% 10%, 10% 10%); */
}

.content .yellow {
  max-width: 35%;
  opacity: 1;
  filter: saturate(2);
}

.yellow {
  margin-top: -50px;
  margin-left: -50px;
}

.content .squig {
  position: absolute;
  margin-top: 25%;
  left: 38.5%;
  max-width: 35%;
  border: 3px solid yellow;
  filter: saturate(1.5);
}

.content .right {
  display: grid;
  place-items: center;
}

h2 {
  color: #f4f4f4;
  /* opacity: .9!important; */
  font-size: 2rem;
  margin-top: 43px;
  margin-left: 45px;
  margin-bottom: -20px;
}

.content .right p {
  margin-top: 50px;
  margin-left: 20px;
    max-width: 85%;
  text-align: right;
  font-size: 16px;
  font-style: italic;
}

.copy p{
  max-width: 300px;
  margin: 0 8%;
  font-family: monospace;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}
.copy p span:first-child{
  font-weight: bold;
}
.copy p span:nth-child(2){
  text-decoration: underline;
}
.back{
  text-transform: uppercase;
  margin-top: 50px;
  text-align: center;
}
.back a{
  text-decoration: none;
  color: #ff00ff;
  cursor: pointer;
}
@media (min-width: 480px) {
  section.padtop {
   height: 3vh;
  }
  .content .left p{
    left: 10%;
    font-size: 13px;
  }
  h2{
    font-size: 3.4rem;
    margin-top: 60px;
    margin-left: 75px;
    margin-bottom: -20px;
  }
  .content .right p {
    margin-top: 50px;
    margin-left: 0px;
      max-width: 78%;
    text-align: right;
      font-size: 20px;
  }
  .copy p{
    max-width: 600px;
    margin: 0 auto;
    font-size: 24px;
    text-align: justify;
  }  
}


/* intersectional observer */
@keyframes anim1 {
  from {
    transform: translateX(-10px);
    opacity: 0.8;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes anim2 {
  from {
    transform: translateY(-10px);
    opacity: 0.8;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes anim3 {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
