body {
  display: flex;
  justify-content: center;  /* centra horizontalmente */
  align-items: center;      /* centra verticalmente */
  height: 100vh;            /* 100% de la altura visible de la pantalla */
  margin: 0;
  background: linear-gradient(135deg, #f4efeb 0%, #b09a79 100%);
}
h1 {
    text-align: center;
    color: #991825;
    font-family: Arial, sans-serif;
    margin-top: 20px;
    font-size: 40px;
    text-shadow: 2px 2px 6px #b09a79, 0 2px 2px #fff;
    
}
p {
    text-align: center;
    color: #945c65;
    font-family: Arial, sans-serif;
    margin-top: 10px;
    font-size: 21px;
}
.container {
     max-width: 800px;
      margin: 100px auto;
      text-align: center;
      padding: 0 15px;
}
.entrar {
    display: inline-block;
    justify-content: center; /* centra horizontalmente */
    align-items: center;     /* centra verticalmente si le das altura */
    height: 50px; 
    width: 150px;   
    border-radius: 20px;
    background-color: #c4aa8b;
    margin-top: -20px;
    position: relative;
    top: -30px;
    
    
}
a {
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 20px;
    display: inline-block;
    line-height: 50px; /* Center text vertically */
    padding: 0 15px;
}

.entrar:hover {
    background-color: #a08a69; /* Cambia el color al pasar el ratón */
}
td[rowspan="2"] {
    vertical-align: top;
    text-align: center;
    padding-bottom: 100px;   /* Ajusta este valor según lo alto que lo quieras */
    padding-right: 40px;
    
}
footer {
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 0px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
}