@import url("colores.css");

body {
  height: 4900px;
  font-family: "Courier New", Courier, monospace;
}

.logo {
  width: 100px;
}

.hover-enlaces {
  transition: all 1s;
  color: var(--gray-100);
  transform: scale(1.2);
}

nav {
  height: 70px;
}

.hover-enlaces::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--teal2-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  color: var(--gray-100);
}

.nav-link:active {
  color: var(--pink-900);
}

.hover-enlaces:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.text-brown {
  color: var(--dark-brown-600);
  transform: scale(1.5);
  background-color: rgba(217, 220, 223, 0.37);
}

.estilo-yo {
  transform: none;
  width: 600px;
  position: relative;
  top: -80px;
  cursor: auto;
}

.estilo-yo2 {
  animation: fadeInUp 1s ease-out forwards 4s;
  opacity: 0;
}

.mensaje {
  padding: 5px;
  margin-left: 5px;
  width: 50px;
  height: 50px;
}

.animacion {
  width: 60px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  height: 75px;
  animation: fadeInUp 1s ease-in-out 1.4s both;
}

.animacion:hover {
  transform: scale(1.1);
}

.animacion2 {
  width: 110px;
  transition: width 0.2s ease-in-out;
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 3px;
  animation: fadeInUp 1s ease-in-out 1.4s both;
}

.animacion2 p {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  margin-bottom: -5px;
  font-size: large;
  color: var(--gray-100);
  font-weight: 500;
  margin-right: 7px;
  font-family: "Courier New", Courier, monospace;
}

.animacion2:hover {
  width: 220px;
}

.animacion2:hover p {
  opacity: 1;
}

.tamanho {
  margin-top: 120px;
  width: 100%;
  height: 380px;
  background-color: var(--gray-100);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 30px 30px 0px 0px;
  animation: fadeInUp 1s ease-in-out 1s both;
}

.nombre {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 9.9rem;
  position: relative;
  top: -68px;
  height: 120px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: var(--gray-100);
  background: linear-gradient(
    to bottom,
    white 50%,
    rgb(179, 174, 174) 75%,
    rgb(131, 127, 127) 100%
  );
  animation: fadeInUp 1s ease-in-out 0.5s both;
  text-shadow: 1px 1px 0 rgb(82, 80, 80), -1px -1px 0 rgba(196, 196, 196, 0.2),
    1px -1px 0 rgba(187, 187, 187, 0.2), -1px 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}

.info {
  font-size: 2rem;
  margin-top: -50px;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  color: var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeInUp 1s ease-in-out 0.7s both;
  height: 66px;
}

.boton-contacta {
  color: var(--gray-100);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 150px;
  border-radius: 50px;
  font-size: 1.5rem;
  border: 1px solid var(--gray-100);
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 1s ease-in-out 0.9s forwards;
  transition: all 0.2s ease-in;
  transform-origin: center center;
}

.boton-contacta:hover {
  width: 165px;
  height: 66px;
}

.boton-abajo {
  color: var(--gray-100);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 50px;
  border-radius: 50px;
  font-size: 1.5rem;
  border: 1px solid var(--gray-100);
  cursor: pointer;
}

.info a {
  color: var(--gray-100);
  text-decoration: none;
  cursor: pointer;
}

.boton-abajo:hover {
  transform: scale(1.1);
}

@keyframes drawBar {
  from {
    height: 0;
  }
  to {
    height: 50px;
  }
}

@keyframes drawArrow {
  from {
    height: 0;
  }
  to {
    height: 20px;
  }
}

.arrow-head {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 5px;
  opacity: 1;
  left: 7px;
  transform: rotate(180deg);
}

.left,
.right {
  position: absolute;
  width: 5px;
  height: 6px;
  background-color: white;
}

.left {
  transform: rotate(-45deg);
  left: 12px;
  animation: drawArrow 1.5s ease-in-out alternate infinite 0.5s;
}

.right {
  transform: rotate(45deg);
  animation: drawArrow 1.5s ease-in-out alternate infinite 0.5s;
}

.altura {
  height: 250px;
}

.cosas {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: var(--gray-600);
  height: 350px;
  margin-top: 100px;
}

.cosas.visible {
  opacity: 1;
}

#typewriter-text {
  font-family: "Courier New", Courier, monospace;
  color: var(--gray-100);
  font-size: 2.6rem;
  width: 500px;
  margin-left: 0px;
  filter: brightness(110%);
  opacity: 1;
}

.texto-estudiando {
  font-family: "Courier New", Courier, monospace;
  color: var(--gray-100);
  font-size: 1.5rem;
  width: 500px;
  margin-left: 100px;
  filter: brightness(100%);
  opacity: 1;
}

.texto-estudiando.show {
  opacity: 1;
}

.conocimiento {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: var(--gray-600);
  height: 550px;
  margin-top: 50px;
}

.conocimiento.visible {
  opacity: 1;
}

.texto-conocimiento {
  font-family: "Courier New", Courier, monospace;
  color: var(--gray-100);
  font-size: 2.6rem;
  width: 600px;
  margin-left: 100px;
  filter: brightness(110%);
  opacity: 1;
  margin-left: -30px;
}

.texto-conocimiento2 {
  font-family: "Courier New", Courier, monospace;
  color: var(--gray-100);
  font-size: 1.5rem;
  width: 350px;
  margin-left: 100px;
  filter: brightness(110%);
  opacity: 1;
}

.texto-conocimiento.show {
  opacity: 1;
}

.skills-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.skills-list li {
  width: 250px;
  background-color: var(--gray-700);
  color: var(--gray-100);
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.skills-list li:hover {
  transform: translateX(-25px);
  color: white;
  filter: brightness(110%);
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nuevo-div {
  opacity: 0;
  transition: opacity 1s ease;
  height: auto;
  margin-top: 50px;
}

.nuevo-div.visible {
  opacity: 1;
}

.texto-nuevo2 {
  text-align: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 2.5rem;
  color: var(--gray-100);
  margin-top: 25px;
  opacity: 0;
  transition: opacity 0.5s ease;
  opacity: 1;
  height: 45px;
  width: 450px;
}

.fijo {
  position: sticky;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-600);
  padding: 10px 20px;
  z-index: 1000;
  opacity: 1;
}

.enla {
  text-decoration: none;
}

.texto-nuevo2 p {
  font-size: 2rem;
  color: var(--gray-100);
  margin-bottom: 20px;
}

.contenedor-tarjetas {
  position: relative;
  height: 100%;
}

.tarjeta {
  width: 850px;
  height: 500px;
  background-color: var(--gray-700);
  border-radius: 10px;
  color: var(--gray-100);
  margin-bottom: 70px;
  position: sticky;
  top: 100px;
  left: 50%;
  overflow: hidden;
  z-index: 1;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tarjeta:hover {
  transform: scale(1.03);
}

.banda-info {
  font-family: "Courier New", Courier, monospace;
  height: 100px;
  border-radius: 10px 10px 0px 0px;
  color: var(--gray-100);
  font-size: 2rem;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

.cuadrado {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--gray-100);
  padding-top: 8px;
  filter: brightness(110%);
  margin-top: -10px;
}

.imagen-proyecto {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: -25px;
  border-radius: 0 0 10px 10px;
}

.final {
  height: 250px;
  border-radius: 0px 0px 30px 30px;
  text-align: center;
  transition: all 0.3s;
  margin-top: 25px;
}

.final:hover {
  transform: scale(1.03);
}

.enla2 {
  text-decoration: none;
}

.ttx {
  font-size: 10rem;
  color: var(--gray-100);
  margin-top: 125px;
}

.ima{
  width: 850px;
  height: 450px;
}

video{
  width: 850px;
  height: 500px;
}
/* Media Queries */
@media (max-width: 1024px) {
  *{
    max-width: 1024px;
    margin: 0 auto;
    
  }
  .logo {
    width: 90px;
  }

  .estilo-yo {
    width: 120%;
    top: -20px;
  }

  .nombre {
    font-size: 5rem;
    top: -66px;
  }

  .tamanho {
    margin-top: 110px;
    height: 350px;
  }

  .mensaje {
    width: 45px;
    height: 45px;
  }

  .animacion {
    width: 55px;
    height: 65px;
  }

  .animacion2 {
    width: 100px;
  }

  
  #typewriter-text {
    font-family: "Courier New", Courier, monospace;
    color: var(--gray-100);
    font-size: 2.3rem;
    width: auto;
    margin-left: 0px;
    filter: brightness(110%);
    opacity: 1;
  }

  .texto-estudiando {
    font-family: "Courier New", Courier, monospace;
    color: var(--gray-100);
    font-size: 2rem;
    width: 500px;
    margin-left: 100px;
    filter: brightness(100%);
    opacity: 1;
  }
.conocimiento{
  overflow: hidden;
}

  .texto-conocimiento {
    font-family: "Courier New", Courier, monospace;
    color: var(--gray-100);
    font-size: 2.3rem;
    width: 550px;
    margin-left: 20px;
    filter: brightness(110%);
    opacity: 1;

  }
  
  .texto-conocimiento2 {
    font-family: "Courier New", Courier, monospace;
    color: var(--gray-100);
    font-size: 1.5rem;
    width: 150px;
    margin-left: -80px;
    filter: brightness(110%);
    opacity: 1;
  }
  

  .contenedor-tarjetas {
    position: relative;
    height: 100%;
  }
  
  .tarjeta {
    width: 650px;
    height: 500px;
    background-color: var(--gray-500);
    border-radius: 10px;
    color: var(--gray-100);
    margin-bottom: 70px;
    position: sticky;
    top: 100px;
    left: 50%;
    overflow: hidden;
    z-index: 1;
    transition: all 0.2s ease;
    cursor: pointer;

  }

  .ima{
    width: 650px;
    height: 450px;
    object-fit: cover;
  }
  
  video{
    width: 800px;
    height: 450px;
    background-color: var(--gray-600);
    position: relative;
    left: -70px;
  }

}

@media (max-width: 768px) {
  *{
    max-width: 768px;
    margin: 0 auto;

  }


  #typewriter-text {
    font-family: "Courier New", Courier, monospace;
    color: var(--gray-100);
    font-size: 1.3rem;
    width: auto;
    margin-left: 0px;
    filter: brightness(110%);
    opacity: 1;
  }

  .texto-estudiando {
    font-family: "Courier New", Courier, monospace;
    color: var(--gray-100);
    font-size: 1rem;
    width: 500px;
    margin-left: 100px;
    filter: brightness(100%);
    opacity: 1;
  }
.conocimiento{
  overflow: hidden;
}

  .texto-conocimiento {
    font-family: "Courier New", Courier, monospace;
    color: var(--gray-100);
    font-size: 1rem;
    width: 250px;
    margin-left: 20px;
    filter: brightness(110%);
    opacity: 1;

  }
  
  .texto-conocimiento2 {
    font-family: "Courier New", Courier, monospace;
    color: var(--gray-100);
    font-size: 1rem;
    width: 150px;
    margin-left: 5px;
    filter: brightness(110%);
    opacity: 1;
  }
  

  .contenedor-tarjetas {
    position: relative;
    height: 100%;
  }
  
  .tarjeta {
    width: 430px;
    height: 500px;
    background-color: var(--gray-500);
    border-radius: 10px;
    color: var(--gray-100);
    margin-bottom: 70px;
    position: sticky;
    top: 100px;
    left: 50%;
    overflow: hidden;
    z-index: 1;
    transition: all 0.2s ease;
    cursor: pointer;

  }

  .ima{
    width: 430px;
    height: 450px;
    object-fit: cover;
  }
  
  video{
    width: 430px;
    height: 450px;
    background-color: var(--gray-600);
  }

  .logo {
    width: 80px;
  }

  .estilo-yo {
    width: 110%;
    top: -40px;
    left: 0px;
  }

  .nombre {
    font-size: 2.5rem;
    top: -60px;
  }

  .tamanho {
    margin-top: 100px;
    height: 300px;
  }

  .mensaje {
    width: 40px;
    height: 40px;
  }

  .animacion {
    width: 50px;
    height: 60px;
  }
  .ttx {
    font-size: 2.8rem;
    color: var(--gray-100);
  
  }
  .animacion2 {
    width: 90px;
  }

  .animacion2 p {
    font-size: medium;
  }

  .info {
    font-size: 1rem;
    margin-top: -105px;
  }

  .boton-contacta {
    font-size: 1rem;
    width: 100px;
    height: 35px;
    margin-top: -15px;
  }

  .boton-abajo {
    font-size: 1rem;
    width: 35px;
    height: 65px;
    margin-top: -25px;
  }


  .cosas {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: var(--gray-600);
    height: 350px;
    margin-top: 100px;
  }
  
  .cosas.visible {
    opacity: 1;
  }
  
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
