/* Base styles */
body {
  margin: 0;
  font-family: 'Caveat', cursive;
  background: linear-gradient(135deg, #ff7eb3, #ff758c, #ff647f);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

/* Background gradient animation */
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Frame styles */
.frame {
  padding: 20px;
  margin: auto;
  max-width: 1200px;
}

/* Logo and title */
.frame__title-wrap img {
  max-width: 200px;
  width: 100%;
  transition: transform 0.3s;
}

.frame__title-wrap img:hover {
  transform: scale(1.1);
}

/* Heading styles */
h1 {
  font-size: 2.5em;
  margin: 0.5em 0;
}

p {
  font-size: 1.2em;
  margin: 0.5em 0;
}

.tape-a-la-machine {
  font-family: 'Fuzzy Bubbles', cursive;
}

/* Buttons */
button {
  font-size: 1.2em;
  padding: 10px 20px;
  margin: 10px 0;
  background-color: #ff4081;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}

button:hover {
  background-color: #ff2051;
}

/* Frame links */
.frame__links a img {
  max-width: 50px;
  margin: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.frame__links a img:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Content section */
.content__title {
  font-size: 3em;
  font-family: 'Rubik Vinyl', sans-serif;
  margin: 1em 0;
}

/* Responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }

  button {
    font-size: 1em;
    padding: 8px 15px;
  }

  .frame__title-wrap img {
    max-width: 150px;
  }

  .frame__links a img {
    max-width: 40px;
  }

  .content__title {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8em;
  }

  p {
    font-size: 0.9em;
  }

  button {
    font-size: 0.9em;
    padding: 6px 10px;
  }

  .frame__title-wrap img {
    max-width: 120px;
  }

  .frame__links a img {
    max-width: 35px;
  }

  .content__title {
    font-size: 2em;
  }
}
