* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@import url("https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Montserrat:wght@200&family=Nunito:wght@200&display=swap");
:root {
  --blue: #1c2d4c;
  --transition: 0.5s;
  --black: rgb(29, 27, 27);
  --white: whitesmoke;
  --whiteMainTag: white;
  --fontAgustinRocha: 0.9rem;
  --fontChica: 1.1rem;
  --fontMed: 1.2rem;
  --fontGrande: 2rem;
  --fontSuperG: 2.5rem;
  --fbBody: #18191a;
  --fbMessageBody: #242526;
  --fb3erBody: rgb(66, 66, 75);
  --fbFontColorNormal: #e4e6eb;
  --fbFontGrey: rgb(66, 66, 75);
  --fbBackgroundTransparente: #7f8083;
  --fbBlueOficial: #4267b2;
  --fbBlueOficial2: #4569b1;
  --fbBlueBackgroundUser: #2d88ff33;
  --fbHoverColor: rgba(255, 255, 255, 0.1);
  --greyless: rgb(180, 174, 174);
  --light: rgb(226, 220, 220);
  --lightBorderBtns: rgba(240, 246, 252, 0.1);
  --lightblue: #1877f2;
  --green: #42b72a;
}

a {
  text-decoration: none;
  color: inherit;
}
/*---------------------------------*/
/*---------------------------GENERAL-------------------------------------*/
section#about,
section#proyectos,
section#contacto,
section#skills {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px;
  font-family: "Nunito", sans-serif;
  min-height: 100vh;
}

section header {
  text-align: center;
  padding: 80px 0 60px 0;
  text-shadow: 2px 2px 2px #000000;
  font-size: var(--fontGrande);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}
span.tituloFantasma {
  position: absolute;
  color: rgba(25, 42, 43, 0.44);
  font-size: 5rem;
  z-index: -1;
  bottom: 15px;
}
body {
  color: var(--white);
}
/*-------------------------------------------------------*/
/*-------------------INTERSECTION OBSERVER / OPACITY-------------------------------------*/
section:not(:first-of-type) {
  opacity: 0;
  transition: 1.5s;
}

/*---------------HEADERS GRALES---------------------*/
/*----------------TITULOS FANTASMAS----------------*/
@media (max-width: 1430px) {
  span.tituloFantasma {
    font-size: 4rem;
  }
}
@media (max-width: 1150px) {
  span.tituloFantasma {
    font-size: 3.5rem;
    left: 40%;
    bottom: 30px;
  }
}
@media (max-width: 730px) {
  section#skills span.tituloFantasma {
    font-size: 3rem;
    left: 25%;
  }
  span.tituloFantasma {
    font-size: 3rem;
    left: 30%;
  }
}
@media (max-width: 513px) {
  section#skills span.tituloFantasma {
    font-size: 2.5rem;
    left: 20%;
  }
  span.tituloFantasma {
    font-size: 2.5rem;
    left: 25%;
    bottom: 42px;
  }
}
@media (max-width: 420px) {
  header h2 {
    font-size: 38px;
  }
  .skillsHeader h2 {
    font-size: 35px;
  }
  section#skills span.tituloFantasma {
    font-size: 30px;
  }
  span.tituloFantasma {
    font-size: 30px;
  }
}
@media (max-width: 350px) {
  .skillsHeader h2 {
    font-size: 2rem;
  }
  section#skills span.tituloFantasma {
    font-size: 1.5rem;
  }
}
