body {
    margin: 0;
    padding: 0;
    background-image: url(/img/fondo01.png);
    background-position: center;
}
.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

header {
    background-color: #ffd200;
    padding: 10px 20px;
    font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  nav ul li {
    display: inline;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #000;
  }

.message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.tex1{
    font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 309;
  font-style: normal;
}

.highlight {
    font-weight: bold;
    color: #333;
}

.bag-image {
    margin: 20px auto;
    max-width: 300px;
    width: 100%;
    height: auto;
}

.button {
    border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 10px 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 12px 15px -2px rgba(0,0,0,0.35);
-moz-box-shadow: 0px 12px 15px -2px rgba(0,0,0,0.35);
box-shadow: 0px 12px 15px -2px rgba(0,0,0,0.35);
}

.text2{
    font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal; 
}

.button:hover {
    opacity: 0.9;
}


/* Tablets y teléfonos grandes (768px y mayores) */
@media (min-width: 768px) {
    .header {
        font-size: 40px;
    }

    .message {
        font-size: 20px;
    }

    .bag-image {
        height: 10rem;
        width: auto;
    }
}

/* Computadoras y pantallas grandes (1024px y mayores) */
@media (min-width: 1024px) {
    .header {
        font-size: 40px;
    }

    .message {
        font-size: 22px;
    }

    .bag-image {
        max-width: 500px;
    }
}

/* Teléfonos pequeños (320px a 480px) */
@media (max-width: 480px) {
    .header {
        font-size: 40px;
    }
    .container {
        padding: 20px 10px;
    }

    .message {
        font-size: 14px;
    }

    .bag-image {
        max-width: 200px;
    }

    .button {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Teléfonos medianos (481px a 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .header {
        font-size: 40px;
    }
    .container {
        padding: 30px 15px;
    }

    .message {
        font-size: 16px;
    }

    .bag-image {
        max-width: 250px;
    }

    .button {
        padding: 10px 25px;
        font-size: 15px;
    }
}