* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
  }

  .slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .slide.active {
    opacity: 1;
  }

  .content {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
  }

  h1 {
<<<<<<< HEAD
    font-size: 2.5em;
=======
    font-size: 2 em;
>>>>>>> 2fc064a8f2537f13187dcf05724850f2e258d5b0
    margin-bottom: 20px;
    max-width: 90%;
  }

  .boton {
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
  }

  .boton:hover {
    background-color: #e55d00;
  }

  footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    color: #fff;
  }