.servicios-body {
    margin: 0;
    padding: 0;
    background-image: url('servicio.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    backdrop-filter: blur(5px);
  }

  .servicio {
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px; 
  
  }
  
  .contenido {
    text-align: center;
    padding: 10px;
    font-family: 'Rajdhani';
    color: #040404;
    font-size: 18px;
    display: flex;
    justify-content: center;
  }
  
  .contenido h2 {
    font-size: 23px;
   color: palegoldenrod;
  }
  
  .contenido p {
    font-size: 23px;
    color: rgb(163, 166, 169);
  }
  header {
    position: relative;
    
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    font-family: 'Rajdhani', sans-serif;;
  }
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
  }
  
  nav ul li {
    display: inline-block;
    margin-right: 40px;
  }
  
  nav ul.menu li a {
    color: rgb(251, 250, 250);
    text-decoration: none;
    font-size: 20px;
  }
  
  nav ul.menu li a:hover {
    color: rgb(23, 69, 66);
  }