* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  outline: none;
}

body {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-image: linear-gradient(
    to right top,
    #051937,
    #004d7a,
    #008793,
    #00bf72,
    #a8eb12
  );
}

main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  max-width: 100%;
  max-height: 100%;

  width: clamp(10rem, 50rem, 100%);
}

h1 {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
}

input {
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

textarea {
  padding: 0.5rem;
  border: none;
  border-radius: 0.5rem;
  resize: none;
  overflow: auto;
  flex: 15rem 1 1;
}

button {
  background-image: linear-gradient(
    to left bottom,
    #051937,
    #004d7a,
    #008793,
    #00bf72,
    #a8eb12
  );
  border: none;
  border-radius: 0.5rem;
  padding: 2rem;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
