@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f2f2f2;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #333333;
}

h2 {
  margin-top: 20px;
  font-size: 24px;
  color: #333333;
}

.input-container {
  display: flex;
  margin-top: 20px;
}

input[type="text"] {
  flex-grow: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #333333;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  margin-left: 10px;
  cursor: pointer;
}

.output-container {
  margin-top: 20px;
}

input[type="text"][readonly] {
  width: 70%;
  display: inline-block;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.copy-button-container {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.copy-button-container button {
  background-color: #ffffff;
  color: #333333;
  display: flex;
  align-items: center;
}

.copy-button-container button:hover {
  background-color: #f2f2f2;
}

.copy-button-container button span::before {
  content: "\\1F4CB";
  margin-right: 5px;
}

.alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  display: none;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  70% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.animate__bounceIn {
  animation: bounceIn 0.8s;
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate__fadeInLeft {
  animation: fadeInLeft 0.5s;
}

@keyframes fadeInRight {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate__fadeInRight {
  animation: fadeInRight 0.5s;
}
