body{
  margin:0;
  min-height:100vh; /* mejor que height */
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(135deg,#003366,#0055aa);
  font-family:Arial, sans-serif;
}

/* CONTENEDOR PRINCIPAL */
.logo-container{
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  text-align:center;
  max-width: 500px;
}

/* LOGO */
.logo-container img,
.logo{
  width:250px;
  max-width:100%;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
}

.logo:hover{
  transform:scale(1.05);
}

/* TEXTOS */
h1{
  margin-top:20px;
  color:#003366;
  font-size:30px;
}

p{
  color:#666;
  margin-top:10px;
  font-size:18px;
}

/* LISTA PROYECTOS */
.proyectos-lista{
  display:flex;
  flex-direction:column;
  gap:20px; /* más separación */
  margin-top:30px;
  width:100%;
  align-items:center;
}

/* BOTONES */
.btn-proyectos{
  display:block;
  width:80%;
  max-width:320px;
  text-align:center;
  padding:15px;
  background:#003366;
  color:white;
  text-decoration:none;
  border-radius:12px;
  transition:0.3s;

  /* borde grueso transparente */
  border:6px solid rgba(255,255,255,0.25);
}

.btn-proyectos:hover{
  background:#0055aa;
  transform:scale(1.03);
  border:6px solid rgba(255,255,255,0.45);
}