body {
  margin: auto;
  color: black;
  font-family: "Anonymous Pro", monospace;
  background-color: #FAB9A7;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-image: url("assets/noise-layer.png");
  background-repeat: repeat;
  background-size: 182px; 
}

.LRectangle {
  height: 100vh;
  width: 1.5em;
  background-image: url(assets/CrabY.png);
  background-repeat: repeat-y;
  background-size: 1.5em 2.5em;
  background-color: #F62F2B;
  transform: scaleX(-1);

}

.RRectangle {
  height: 100vh;
  width: 1.5em;
  background-image: url(assets/CrabY.png);
  background-repeat: repeat-y;
  background-size: 1.5em 2.5em;
  background-color: #F62F2B;
}

.content {
  width: 95%;
  display: grid;
  grid-template-columns: 20% 60% 20%;
  grid-template-rows: 20% 60% 20%;
  height: 100vh;
  overflow: hidden;
}

.YC{
  background-color: #FFC21C;
  height: 30em;
  width: 30em;
  border-radius: 50%;
  display: inline-block;
  background-image: url("assets/noise-layer.png");
  background-repeat: repeat;
  background-size: 182px; 
  align-self: center;
  justify-self: center;
}

h1 {
  font-family: "Posters", monospace;
  color: #EB332C;
  font-size: 6em;
}

.p1-Title {
  margin-top: 1.25em;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.p2-Title {
  margin: -1em 0 0 -1em;
  -webkit-user-select: none; 
  -ms-user-select: none; 
  user-select: none;
}

.about {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 3em;
}

h2 {
  font-family: "Asphaltic", monospace;
  color: black;
  font-size: 3em;
  -webkit-user-select: none; 
  -ms-user-select: none; 
  user-select: none; 
  }

#about-p {
 margin-top: -2em; 
}

.animate-in {
  display: inline-block;
  transform: translate3d(0, 3rem, 0) skewY(5deg);
  opacity: 0;
  transition:
  transform 1.15s cubic-bezier(.35, .35, 0, 1),
  opacity 0.85s cubic-bezier(.35, .35, 0, 1);
}

.animate-in.active {
  transform: translate3d(0, 0, 0) skewY(0);
  opacity: 1;
}

.delay {
 transition-delay: 0.25s;
}

#crab-stamp {
  position:absolute;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6em 5em 7em  5em;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.circle {
    position: relative;
    width: 300px;
    height: 300px;
    animation: spin 10s linear infinite;
    transform-origin: center center; 
    margin: -10em 5em 0 0;
  }

  .circle span {
    position: absolute;
    left: 50%;
    transform-origin: 0 150px; 
    color: black;
    font-family: "Asphaltic", monospace;
    font-size: 2em;
    font-weight: 500;
    letter-spacing: 2px;
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

@font-face {
  font-family: Posters;
  src: url(fonts/PostersItalicPersonalUseBoldItalic-ALqx6.ttf); 
}

@font-face {
  font-family: Asphaltic;
  src: url(fonts/ASPHALTIC-SCRATCH-ROUNDED-PERSONAL-USE.ttf);
}

@font-face {
  font-family: Classroom;
  src: url(fonts/ClassroomPersonalUse-7Bv34.ttf);
}