html, body, #cesiumContainer, #content {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#landing-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .logo-landing {
    max-width: 240px;
    margin-bottom: 25px;
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #1a237e;
  }
  
  .subtext {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .botones-landing {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .botones-landing button {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .botones-landing button:hover {
    background-color: #0d47a1;
  }
  
  .info-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
  }
  