h1 {
    color: white;
    font-size: 80px;
    text-align: center;
    padding: 40px;
    margin-top: 100px;
    margin-right: 150px;
    margin-bottom: 15px;
    margin-left: 150px;
}

h1:hover {
    color: #3cff00;
    transition: color 0.5s;
    font-size: 100px;
    
}


p {
    font-size: 30px;
    text-align: center;
    color: white;
    /*border: 2px solid black;*/
    padding: 40px;
    
    text-align: justify;
    }

/*p:hover {
    color: #16c41f;
    transition: color 0.5s;
}*/

body {
  background: linear-gradient(90deg, #000000, #5f00ba);

    color: black;
    font-family: Arial, sans-serif;
    font-size: 22px;
    text-justify: inter-word; /* justifica por palabras (mejor soporte) */
    line-height: 1.5;
    }

button:hover{
  background: linear-gradient(135deg, #6a00ff, #2b003f);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(180, 0, 255, 0.9);
}

a:hover {
  text-decoration: underline;
}

button {
  font-size: 40px;
  cursor: pointer;
  border: none;
  border-radius: 16px;
  background-color: black;
  color: white;
  width: 240px;
  height: 150px;
  margin: 35px;
    box-shadow: white 0px 0px 10px;
  
}



div.contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.message-card {
           
            border: 2px solid rgba(245, 242, 240, 0.678);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            margin-top: 50px;
    margin-right: 150px;
    margin-bottom: 15px;
    margin-left: 150px;
}

div.message-card p {
    font-size: 35px;
    color: white;
    padding: 30px;
    text-align: center;
}

div.message-card:hover {
     background: linear-gradient(135deg, #6a00ff, #2b003f);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(180, 0, 255, 0.9);
}

div.message-card:hover p {
    color: #3cff00;
    transition: color 0.5s;
}

  
