@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap");

:root {
  --cool-gray: #08415c;
  --custom-white: #f7f7f7;
  --custom-blue: #4169e1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.background {
  background-image: url("./img/background.jpg");
  background-size: 50%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-color: var(--cool-gray);
  pointer-events: none;
}

.container {
  background-color: var(--custom-white);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  width: 500px;
  max-width: 95%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 5;
}

#voices {
  font-size: 1rem;
  font-weight: bold;
  color: var(--cool-gray);
  border: 1px solid var(--cool-gray);
  border-radius: 5px;
  padding: 10px 3px 10px 5px;
  cursor: pointer;
}

label {
  font-size: 1.4rem;
  font-weight: bold;
}

textarea {
  border: 1px solid var(--cool-gray);
  border-radius: 5px;
  font-size: 1.2rem;
  padding: 10px;
  color: var(--cool-gray);
}

.buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

button {
  background-color: var(--cool-gray);
  border: none;
  border-radius: 5px;
  color: var(--custom-white);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

button:hover {
  background-color: var(--custom-blue);
}
