/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Contenedor principal */
.container {
   display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  justify-content: center;
}

/* Logo */
.logo-wrapper {
    display: flex;
    justify-content: center;
	margin-top: 100px;
}

.logo {
    width: 200px;
    height: auto;
}

/* Portada */
.portada-wrapper {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

.portada {
    width: 600px;
    height: auto;
}
.txttemporl {
	margin-top: 100px;
}
/* Responsive */
@media (max-width: 768px) {
    .portada {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 150px;
    }
    
    .portada-wrapper {
        margin-top: 60px;
    }
}
