body, html {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  body{
    margin: 0;
    padding: 0;
    background-image: url('bus.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; 
    min-height: 100vh;
  
  }
  .texto1{
    text-align: center;
    font-family: 'Rajdhani';
    font-size: 27px; /* Tamaño del texto "Bienvenidos a Turismo Rey" */
    font-weight: normal;
    margin-top: 30px; /* Espacio superior */
  }

  .texto2{
    text-align: center;
    font-family: 'Rajdhani';
    font-size: 49px; /* Tamaño del texto "Turismo Rey" */
    font-weight: bold; /* Para hacer el texto más grande */
  }

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);
}
 
.titulo {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: aliceblue;
      }
  h1 {
    font-size: 40px;
  }
  h2{
    font-size: 40px;
    color: rgb(2, 48, 63);
  }
  .seccion-destinos {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('destinos.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
  }
  
  .destino {
    width: 400px; 
    margin: 30px;
    text-align: center;
    color: antiquewhite;
  }
  
  .destino img {
    max-width: 400px; 
    height: auto;
    object-fit: cover;
    border-radius: 5px;
  }
  .nuevo-contenido {
    font-family: 'Rajdhani', sans-serif;
    color: #040404;
    font-size: 18px;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(5px);
  }
  p{
    color: rgb(250, 215, 232);
    font-family: 'Courier New', Courier, monospace;
  }