﻿body {
  background: radial-gradient(circle, #ffdf70, #ffb347);
  font-family: 'Comic Sans MS', cursive, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
  color: #4b2e00;
}

h1 {
  font-size: 3em;
  text-shadow: 2px 2px #fff100;
  animation: shake 1.5s infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  25% { transform: translate(-1px, -2px) rotate(-1deg); }
  50% { transform: translate(-3px, 0px) rotate(1deg); }
  75% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -1px) rotate(1deg); }
}

.homero {
  width: 300px;
  border: 5px dashed #fff100;
  border-radius: 20px;
  margin: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

button {
  background-color: #f54242;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 1.2em;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 3px 3px #000;
  transition: transform 0.1s;
}

button:active {
  transform: scale(0.95);
}

.retro-text {
  font-size: 2em;
  margin-top: 20px;
  text-shadow: 1px 1px 0px #fff;
}
