body {
  color: black;
  background-image: url('./assets/background1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'DM Sans', sans-serif;
  font-family: 'Montserrat', sans-serif;
  margin: 0%;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: -1; 
  pointer-events: none; 
  margin: 0%;
}

.blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 40px;
  padding: 5%;
}

.blog h1{
color: #FFF;
text-align: center;
font-family: Montserrat;
font-size: 6vh;
font-style: normal;
font-weight: 1578;
line-height: normal;
margin: 0%;
padding: 0%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.blog p{
color: var(--White, #FFF);
text-align: center;
font-family: Montserrat;
font-size: 26px;
font-style: normal;
font-weight: 500;
line-height: normal;
margin: 0%;
padding: 0%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.blog-button {
    margin: 20px;
  padding: 15px 50px;
  background-color: #03A15D; 
  color: #fff; 
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
}
a{
    text-decoration: none;
    color:#FFF;
}

/* Estilos para el footer */
footer {
  background: var(--Dark, #2d2d2f);
  color: white;
  margin: 0%;
  padding: 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fotter-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.icon {
  margin: 10px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer li {
  display: inline;
  margin: 0 20px; 
}
ul.icons {
 display: flex;
  flex-direction: row;
  list-style-type: none; 
  padding: 0; 
  justify-content: center;
  align-items: center;/ 
}


.navbar {
  background: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(6px);
  padding: 10px 0;
   position: fixed; 
  top: 0; 
  width: 100%; 
  z-index: 1000; 
}
ul.navbar {
  list-style-type: none;
  margin: 0;
  overflow: hidden;
  padding-inline-start: 0px;
  display: flex;
  justify-content: space-around;
}

li.nav-item {
  float: left;
}

li.nav-item a {
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  color: white;
}
.hidden-checkbox {
  position: absolute;
  left: -9999px;
}
@media screen and (max-width: 767px) {
    .blog p{
           text-align: justify; 
           font-size: 3vh;
    }

}
@media screen and (max-width: 668px) {
  footer {
    padding: 2%;
  }

  .fotter-container {
    flex-direction: column;
    align-items: center;
  }
ul.icons {
  display: flex;
  flex-direction: row;
  list-style-type: none; 
  padding: 0; 
  justify-content: center;
  align-items: center;
}


  .icon {
    margin: 5px; 
  }

  footer li {
    margin: 5px 0;
  }
}

@media screen and (max-width: 668px) {

 .menu-icon {
            font-size: 24px;
            cursor: pointer;
            color: black;
            display: block; 
        }

  
        ul.navbar {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            position: absolute;
            background-color: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(9px);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.75);
            top: 0;
            left: 0;
            padding: 10px 0;
        }

        li.nav-item {
            float: none;
        }

        li.nav-item a {
            padding: 10px 0;
        }

      
        #menu-toggle:checked + label.menu-icon + ul.navbar {
            display: flex;
        }

        .menu-icon {
            margin: 5%;
        }
        input{
          display: none;
        }
     
}
