body {
  background-color: #95e8d7;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  margin: 50px auto;
  max-width: 800px;
  padding: 20px;
}

header h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  font-family:sans-serif;
}

form {
  padding: 20px;
  background-color: beige;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.instructions {
  padding: 15px;
  border: 1px solid rgba(245, 40, 145, 0.63);
  width: 70%;
  font-size: 20px;
  border-radius: 50px;
 font-family:sans-serif;
  box-sizing: border-box;
}

input[type="submit"] {
  padding: 15px 25px;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  background-color: rgba(245, 40, 145, 0.7);
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

input[type="submit"]:hover {
  background-color: rgba(245, 40, 145, 1);
}

#quotes {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#quotes div {
  margin: 20px 0;
 font-family:sans-serif;
  font-size: 25px;
  border-left: 4px solid rgba(245, 40, 145, 0.8);
  padding: 10px 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  text-align: left;
  width: 80%;
  max-width: 700px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copy-button {
  background-color: rgba(245, 40, 145, 0.8);
  border: none;
  color: white;
 font-family:sans-serif;
  font-size: 18px;
  padding: 6px 14px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.copy-button:hover {
  background-color: rgba(245, 40, 145, 1);
}

footer {
  margin-top: 50px;
  font-size: 14px;
}

footer a {
  color: #f52891;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

#quotes .loading {
  display: block !important;
  text-align: center !important;
  justify-content: normal !important;
  padding: 15px 0;
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-left: none !important;
  font-weight: bold;
  font-size: 1.2rem;
  color: #f52891;
  margin: 30px 0;
}

@media (max-width: 600px) {
  .container {
    margin: 20px 10px;
    padding: 15px;
    max-width: 100%;
  }

  header h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  form {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px;
  }

  .instructions {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }

  input[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  #quotes div {
    width: 100%;
    font-size: 18px;
    padding: 8px 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-button {
    font-size: 16px;
    padding: 5px 12px;
    align-self: flex-end;
    margin-top: 10px;
  }
}
