body {
  margin: 50px;
  font-family: 'Lobster', sans-serif;
  color: #222222;
  background-color: aliceblue;
}

.row {
  width: 100%;
  height: auto;
  display: flex;
  margin-block: 8px;
  
  .image {   
    width: auto;
    height: 100%;
    display: flex;
    margin: auto;
    animation: spin 6s linear infinite;
  }

  .title {
    width: auto;
    font-size: 38px;
    margin: auto;
    margin-top: 20px;
  }

  .line {
    margin: auto;
    padding: 15px;
  

  }
}

@-moz-keyframes spin { 
  100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
  100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
  100% { 
      -webkit-transform: rotate(360deg); 
      transform:rotate(360deg); 
  } 
}