body{
    background-color: black;
    /* padding: 5rem;
    margin: 100px; */
   
}
main{
    margin-top: 20rem;
    width: 100%;
    height: 25h;
    /* background-color: brown; */
    justify-content: center;
    justify-items: center;
    border-radius: 35px;
    display: flex;
    gap: 10rem;
}
.text{
    justify-content: center;
    justify-items: center;
    align-items: center;
    width: 30%;
    margin-top: 60px;
    height: 150px;
    /* background-color: aqua; */
    color: white;
    font-size: 35px;
    font-weight: bold;
    animation: move;
    animation-duration: 3s;
    /* animation-iteration-count: infinite;  */
}
@keyframes move {
  from {
    transform: translateX(600px);
  }
  to {
transform: translateX(0);
  }
}
span{
  color: red;
  font-size: 35px;
}
button{
  border: none;
  border-radius: 10px;
  background-color: rgba(1, 8, 8, 0.865);
  padding: 10px;
  margin-top: 10px;
  width: 50%;
  font-size: 25px;
  font-weight: bold;
  color: white;
}
img{
    border-color: blue;
    border-radius: 200px;
    box-shadow: 0 0 20px black;
    animation: -moz-drag-over;
    animation-duration: 15s;
    /* animation-iteration-count: infinite; */
}
@keyframes -moz-drag-over {
    to {
      transform: translateX(0);
    }
    from {
transform: translateY(200px);
    }
}
