* { color:#000000; text-decoration: none;}

/* Global */
html {
  overflow-x: hidden; /* Solo oculta scroll horizontal, no vertical */
  overflow-y: auto;   /* Asegura que el scroll vertical esté habilitado */
}

body {
  background-color: rgb(29, 28, 28);
}

.line-1{
  position: relative;
  top: 50%;  
  width: 24em;
  margin: 0 auto;
  border-right: 2px solid rgba(255,255,255,.75);
  font-size: 180%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-50%);    
}
p {
  color: white;
}

/* Animation */
.anim-typewriter{
  animation: typewriter 3.5s steps(44) 1s 1 normal both, 
  blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 280px;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255, 255, 255, 0.75);}
  to{border-right-color: transparent;}
}

.dropdown-menu-rightside {
  left: 100% !important;
  top: 0 !important;
  margin-left: 0.2rem;
}

@media (max-width: 991.98px) {
  .dropdown-menu-rightside {
    left: auto !important;
    right: 0 !important;
  }
}

.hr {
  color: rgb(255, 255, 255);
  border: 3px solid rgb(255, 255, 255);
}

/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05rem;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}


footer {
  background-color: rgb(33, 37, 41);
  border: 1px black solid;
  box-shadow: 0 0 50px 15px black;
  text-align: center;
}

h1 {
  color: white;
}

h2 {
  color: white;
}