.title{
	font-size: 28px;
	text-align: center;
	font-weight: lighter;
	margin: 6%;
  color: white;
  }

  .toxic{
    padding: 2%;
    border-radius: 0px 30px 30px 0px;
	  background-color: #E77641;
    margin:2%;
  }

  .toxicPhone{
    background-color: #E77641;
    padding:4%;
  }
  .block{
      width: 85%;
      color:#F0E8D3;
      margin: 5% 5% 5% 5%;
  }

  .blockContent{
    text-align: left;
    margin: 5% 8% 10% 8%;
    width: 90%;
  }

  b{
      color: white;
  }

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

  .rotation{
    width: 70%;
    animation-name: spinning;
    animation-duration: 5s;
    animation-iteration-count: infinite;
  }

  .parent{
    position: relative;
  }
  .dead{
    width: 7%; 
    margin-left: 35%;
    animation-name: dead;
    animation-duration: 5s;
    animation-iteration-count: infinite;
  }

  .dead1{
    width: 15%; 
    animation-name: dead1;
    animation-duration: 3s;
    animation-iteration-count: infinite;
  }

  .dead2{
    width: 10%; 
    margin-left: 78%;
    margin-top: -15%;
    animation-name: dead2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }
  @keyframes dead {
    0%  { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
  }
  @keyframes dead1 {
    0%  { opacity: 0.5; }
    50% { opacity: 0.7; }
    100% { opacity: 0.5; }
  }
  @keyframes dead2 {
    0%  { opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
  }

  .rain{
    width: 20%;
    margin-top: 2%;
    margin-right: 5%;
  }
  .rain1{
    width: 20%;
    margin-top: 68%;
    margin-left: 42%;
    position: absolute;
  }
  .rain2{
    width: 18%;
    margin-top: 28%;
    margin-left: 56%;
    position: absolute;
  }
  .rain3{
    width: 15%;
    margin-top: 55%;
    margin-right: 72%;
    position: absolute;
  }
  .water{
    width: 20%;
    margin-top: 22%;
    margin-right: 80%;
    position: absolute;
  }

  .water1{
    width: 18%;
    margin-top: 120%;
    margin-left: 80%;
    position: absolute;
  }
  .water2{
    width: 18%;
    margin-top: 80%;
    margin-left: 80%;
    position: absolute;
  }

  .land{
    width: 20%;
    margin-top: 165%;
    margin-right: 80%;
    position: absolute;
    opacity: 0.3;
  }
  .land1{
    width: 28%;
    margin-top: 150%;
    margin-right: 80%;
    position: absolute;
  }

  .land2{
    width: 20%;
    margin-top: 150%;
    margin-left: 80%;
    position: absolute;
  }

  .fadeIn {
    animation-name: fadeIn;
    animation-duration: 5s;
    animation-iteration-count: infinite;
  }
  @keyframes fadeIn {
    0%   { 
      opacity: 0; 
      transform: translateX(0%);
      }
    25%   { 
      opacity: 0.8; 
      transform: translateX(40%);
    }
    50%   { 
      opacity: 0; 
      transform: translateX(80%);
    }
    75%   { 
      opacity: 0.8; 
      transform: translateX(40%);
    }
    100% { 
      opacity: 0; 
      transform: translateX(0%);}
  }
  .slideIn{
    animation-name: slideIn;
    animation-duration: 3s;
    animation-iteration-count: infinite;
  }
  @keyframes slideIn {
    0%   { 
      opacity: 1; 
      transform: translateY(0%);
      }
    100%   { 
      opacity: 0; 
      transform: translateY(80%);
    }
  }

  @keyframes spinningS {
    0% {
      transform: rotate(-8deg);
    }
    50% {
      transform: rotate(8deg);
    }
    100% {
      transform: rotate(-8deg);
    }
  }

  .rotationSmall{
    animation-name: spinningS;
    animation-duration: 5s;
    animation-iteration-count: infinite;
  }

  .lightBg{
    background-color: #F0E8D3;
    color:#2E4656;
    padding: 10% 5% 3% 5%;
  }

  .subTitleGreen{
    font-size: 28px;
    text-align: left;
    font-weight: lighter;
    color: #3A6854;
    border-left: 2px solid #3A6854;
    margin-top: 5%;
    padding: 5% 3% 0% 3%;
    }

    .car{
      padding: 2%;
      border-radius: 30px 0px 0px 30px;
      background-color: #C8D3A1;
      color: #3A6854;
      margin-top: -8%;
  }
    .driveIn{
      animation-name: driveIn;
      animation-duration: 3s;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in;
  
    }
    @keyframes driveIn {
      from  { 
        transform: translateX(0);
        }
      to   { 
        opacity: 0;
        transform: translateX(-100px);
      }
    }
    .child{
      position: absolute;
      z-index: 9;
    }
    .heart{
      margin-left: 42%;
      animation-name: heart;
      animation-duration: 1s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
    }

    .imageDisplay{
      width: 40%;
      margin: 10% auto 5% auto;
    }

    @keyframes heart {
      from  { 
        transform: scale(1);
        }
      to   { 
        transform: scale(1.1);
      }
    }
    .earthH{
      top:0;
      left: 85%
    }
    .bGreen{
      color: #3A6854;
      font-weight:bolder;
    }

    p{
      padding: 0;
      margin: 0;
    }