html,
body {
  margin: 0;
  padding: 10px;
  background-color: rgb(13, 13, 13);
  display: grid;
  overflow: hidden; /* Hide scrollbars */
}

::selection {
  color: black;
  background: rgb(255, 125, 0);
}

canvas {
  display: block;
}

.generated-text {
  color: white;
  text-align: center;
  font-family: "Georgia";
  font-weight: lighter;
  z-index: 2;
}

#project-title {
  padding-bottom: 3em;
}

#interjection {
  color: red;
  font-style: italic;
  font-weight: bold;
  font-size: 30px;
  margin-top: 0%;
}

button {
  background-color: transparent;
  border: none;
  font-size: 5em;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  padding: 0px;
  z-index: 3;
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
button:hover{
  border-radius: 100%;
  transform: scale(1.2);
  /* transition: background-color 1s, border-radius 5s ; */
}

#cloudOne{
  bottom: 1em;
  color: transparent;  
  text-shadow: 0 0 0 rgba(255, 255, 255, 0.062);
  font-size: 15em;
  position: absolute;
  -webkit-animation: linear infinite;
  -webkit-animation-name: runLeft;
  -webkit-animation-duration: 120s;
  z-index: 1;
}

#cloudTwo{
  color: transparent;  
  text-shadow: 0 0 0 rgba(255, 255, 255, 0.123);
  font-size: 10em;
  position: absolute;
  -webkit-animation: linear infinite;
  -webkit-animation-name: runRight;
  -webkit-animation-duration: 180s;
  z-index: 1;
}
@-webkit-keyframes runLeft {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0;    
  }
}

@-webkit-keyframes runRight {
  0% {
    right: 0;
  }
  50% {
    right: 100%;
  }
  100% {
    right: 0;    
  }
}
