body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
}

h1 {
  font-size: 2.5em;
  color: #6a1b9a; /* Violet color */
  margin-bottom: 20px;
}

.ai-image {
  max-width: 65%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

p {
  font-size: 1.2em;
  color: #555;
  margin: 10px 0;
}

a {
  color: #6a1b9a; /* Violet color */
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Material Design */
.container {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.container:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.instagram-button:hover {
  background-color: #d72a59; /* Slightly darker Instagram brand color */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.instagram-button i {
  margin-right: 8px;
}
