body {
  background-color: #f4e1b5;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
}

.potato {
  font-size: 80px;
  animation: spin 2s linear infinite;
}

.sub {
  opacity: 0.7;
  font-size: 14px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
