body {
    height: 100vh;
    margin: 0;
    background: #212933;
    color: #738BAA;
    /*font-family: 'Nunito';*/
}

section {
    width: 80%;
    margin: 0 auto;
    height: 100vh;
}

.content {
    display: grid;
    grid-template-columns: 70% auto;

    .left {
        position: relative;
        text-align: center;
        display: grid;
        place-items: center;

        p {
            background: white;
            position: absolute;
            margin-top: -25%;
            right: 17%;
            color: black;
            padding: 1em;
            border-radius: 15px;
            width: 20vw;
            text-align: left;
        }
    }

    .yellow {
        width: 50%;
        opacity: 0;
    }

    .squig {
        position: absolute;
        margin-top: 32%;
        left: 19%;
        width: 8vw;
    }

    .right {
        display: grid;
        place-items: center;

        h2 {
            color: white;
            font-size: 1.7rem;
        }

        p {
            line-height: 1.6em;
        }
    }

}

.anim {
    opacity: 0;
}

@keyframes anim1 {
    from {
      transform: translateY(-100px);
      opacity: 0;
    }
    to  {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
 }