body {
    font-family: Arial, sans-serif;
    background-color: #ff0000;
}

.modal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(90, 211, 205);
}

.modal__content {
    position: relative;
    width: 400px;
    background-color: #095c3e;
    border-radius: 10px;
    padding: 2rem;
    margin: 15% auto;
    box-shadow: 0 5px 15px rgba(24, 105, 65, 0.3);
}

.modal__title {
    font-size: 1.8em;
    margin-top: 0;
     color: #6ac064;
}

.modal__body {
    font-size: 1.1em;
    color: #6ac064;
}

.modal__close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}

.modal--visible {
    display: block; 
}
.flechita {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #333;
  background-color: #e0e0e0;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.flechita:hover {
  background-color: #bbb;
  color: #000;
}