html{
    font-family:'Courier New', Courier, monospace;
    background-image:url("/assets/alien_texture.png");
    background-size: 100% auto;
    background-color: green;
}

@keyframes animMain{
    from{
      translate: 0 0;
      scale: 200% 1;
    }
    to{
      translate: 0 0;
      scale: 100% 1;
    }
  }

  @keyframes secondaryAnim{
    from{
      translate: 150vw 0;
      scale: 200% 1;
    }
    to{
      translate: 0 0;
      scale: 100% 1;
    }
  }

.text{
    animation: 3s 1 alternate animMain;
    height: 50%;
    width: 50%;
    background-color: rgba(254, 254, 254, 0.313);
    left: 50%;
    right: 50%;
    margin-top: -50px;
    margin-left: -50px;
    margin: auto;
    border-radius: 25px;
    padding: 20px;
}

.backNotice{
    animation: 3s 1 alternate secondaryAnim;
    position: fixed;
     left: 0;
    bottom: 0;
    width: 100%;
    background-color: white;


}