/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
}

h1, h2, p {
  margin-bottom: 10px;
  
}

ul {
  margin-left: 20px;
}

/* Header */
header {
  background-color: #8257e5;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

/* Content */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  border-radius: 10px; 
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

/* Textareas */
textarea {
  resize: vertical;
  border: 1px solid #ccc;
  padding: 8px;
  background-color: #f9f9f9;
  color: #333;
  font-size: 18px;
  line-height: 1.4;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
}

textarea:focus {
  border-color: #8257e5;
}

/* Buttons */
.button-container {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

button,
input[type="file"] {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 150px;
  text-align: center;
}

button:hover,
input[type="file"]:hover {
  background-color: #333;
}

/* Labels */
label {
  color: black;
  font-size: 18px;
}

#legenda {
  color: black;
  font-size: 22px;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #f4f4f4;
  color: #888;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #ddd;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .content {
    width: 95%;
  }

  .button-container {
    flex-direction: column;
    align-items: center;
  }
}
