body {
  background: linear-gradient(135deg, #fff5eb, #ffe8cc);
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #333;
}

header {
  padding: 40px 20px 10px;
}

h1 {
  font-size: 2.5cm;
  margin: 0;
  transition: transform 0.5s, color 0.5s;
}

h1:hover {
  transform: rotate(5deg) scale(1.05);
  color: #ff8800;
}

.subtitle {
  font-size: 1.2em;
  color: #666;
  margin-top: 10px;
}

.intro {
  max-width: 800px;
  margin: 20px auto 40px;
  padding: 0 20px;
  line-height: 1.6;
  font-size: 1.1em;
  color: #444;
}


p:hover {
  transform: rotate(5deg) scale(1.05);
}

p {
  animation-name: myAnimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transition: transform 0.5s, color 0.5s;
}

@keyframes myAnimation {
  0% {color: rgb(0, 0, 0);}
  50% {color: rgb(255, 115, 0);}
  100% {color: rgb(0, 0, 0);}
}

#e {
  position: relative;
  color: #ff6600;
  margin-bottom: 10px;
  font-size: 1.8em;
  animation-name: slideText;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

#ee {
  position: relative;
  color: #ff6600;
  margin-bottom: 10px;
  font-size: 1.8em;
  animation-name: slideTextt;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes slideText {
  0%   { left: -500px; }
  50%  { left: 500px; }
  100% { left: -500px; }
}

@keyframes slideTextt {
  0%   { left: 500px; }
  50%  { left: -500px; }
  100% { left: 500px; }
}

.audio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

audio:hover {
  transform: translateY(-30px) rotate(5deg) translateX(30px);
  transition: transform 1s;
}

.video-row {
  display: flex;
  justify-content: center;
  gap: 50px;
}

video:hover {
  transform: scale(2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 1s;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9em;
  letter-spacing: 0.5px;
}

footer:hover {
  color: rgb(255, 149, 0);
  transform: rotate(3deg);
  transition: transform 1s;
}