body {
  font-family: Arial, sans-serif;
  background: #d0f0e3;
  text-align: center;
  padding: 20px;
}

.controls {
  margin-bottom: 20px;
}

label {
  margin: 0 10px;
}

.preview {
  margin: 20px auto;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#art {
    width: 100px;
  height: 100px;
  background: #3498db;
  transition: all 0.3s ease;
}

/* Animations */
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

textarea {
  margin-top: 20px;
  width: 75%;
  height: 145px;
}
footer{

    text-align: center;
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     background-color: #b16aa7;
     width: 100%;
}