body {
  background-image: url("fondo2.jpg");
  font-family: "Times New Roman", serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
img{
    width: 50%;
    height: 30%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h2, h3 {
  color: #0501EB;
  margin-top: 40px;
}

.foro-container {
  background-color: white;
  width: 70%;
  max-width: 800px;
  padding: 30px;
  margin-top: 30px;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #00E500;
  resize: none;
  margin-bottom: 10px;
  font-family: "Times New Roman", serif;
}

button {
  background: none;
  border: none;
  color: #0501EB;
  text-decoration: underline;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  font-family: "Times New Roman", serif;
}

button:hover {
  color: #FF00CE;
}


.mensaje {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  color: #0501EB;
}

.fecha {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
  text-align: right;
}
.button {
  position: absolute;
  top: 90%;          /* mueve verticalmente */
  left: 90%;         /* mueve horizontalmente */
  transform: translate(-50%, -50%);
  background: none;
  color: #2fe100;
  padding: 0;
  text-decoration: underline;
  font-family: "Times New Roman", serif;
  font-size: 20px;
  z-index: 2;
}

.button:hover {
  color: #FF00CE;
}