/* Objects */
.titulo-principal{
  font-weight: 700;
  font-size: 60px;
  line-height: 75px;
  margin: 5px;
  color: #fff;
}
@media (min-width: 960px){
  .titulo-principal{
    font-size: 78px;
  }
}
.titulo-secundario{
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 131%;
  text-align: center;
  color: #ffff;
}
.parrafo{
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
}
/* HTML */
body{
  margin: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: #13171C;
}
.home-page{
  height: 100vh;
  background-color: #13171C;
}
.home-page__contenedor-header{
  height: 10vh;
  margin: 16px;
}
@media (min-width: 960px){
  .home-page__contenedor-header{
    height: 15vh;
  }
}
.home-page__contenedor-caratula{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px;
  min-height: 90vh;
}
@media (min-width: 960px){
  .home-page__contenedor-caratula{
    flex-direction: row;
    align-items: center;
    min-height: 80vh;
  }
}
.home-page__contenedor-caratula__texto__palabras > h1{
  color: #00ADB5;
}
@media (min-width: 960px){
  .home-page__contenedor-caratula__texto__palabras > h1{
    display: inline;
  }
}
.home-page__contenedor-caratula__imagen{
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page__contenedor-caratula__imagen > img {
  width: clamp(180px, 25vw, 400px);
  height: auto;
}
.description{
  width: 100%;
  padding: 71px 45px;
  background-color: #192130;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 38px;
}
@media (min-width:960px){
  .description{
    flex-direction:row;
  }
}
.decription__text{
  display: grid;
  gap: 29px;
  max-width: 558px;
}
.titulo-secundario > h2{
  display: inline;
}
.colorCeleste{
  color: #00ADB5;
}
.decription__image{
  display: flex;
  justify-content: center;
}
.decription__image > img {
  width: 295px;
  height: 241px;
  object-fit: cover;
  border-radius: 8px;
}
.servicios{
  background-image: url("../assets/pictures/doodle\ items.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}
.mis-servicios {
  display: grid;
  margin-top: 20px;
  grid-template-columns: 1fr;
  gap: 44px; 
  justify-items: center;
}
@media (min-width: 768px) {
  .mis-servicios {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mis-servicios {
    grid-template-columns: repeat(3, 1fr);
  }
}
.formulario{
  background-color: #192130;
}
.footer{
  background-color: #0F1113;
}