* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    position: relative;
    overflow: hidden;
    color: #1c2e60;
}


body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://beyondventures.momentumwebagency.com/wp-content/uploads/2024/10/beyond-ventures-BANNER_EDIT-1.png') no-repeat center center fixed;
    background-size: cover;
    
    z-index: -1; 
}

.container {
  padding-top: 0px;
    padding: 40px;
    border-radius: 10px;
    max-width: 100%;
    width: 90%;
    z-index: 1;
}

.logo {
    max-width: 250px;
    width: 50%;
    height: auto;
    margin-bottom: 0px;
}

h1 {
    font-size: 2.7em;
    margin-bottom: 10px;
    color: #1c2e60;
}

.box{
   font-size: 1.2em;
    margin-bottom: 10px;
    color: white;
}

p {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #1c2e60;
}

a {
    color: #ffcc00;
    text-decoration: none;
}

/* Cuadro de contacto */
.contact-box {
    position: relative; 
    margin-top: 90px;
    background-color: rgba(28, 46, 96, 0.85); 
    color: white; 
    padding: 15px; 
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
    width: 500px; 
    margin-left: 20px;
}


.contact-box h3 {
    font-size: 1.em;
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 1em;
    margin-bottom: 5px;
}

.contact-box a {
    color: #ffcc00;
    text-decoration: none;
}

/* Responsivo para pantallas pequeñas (teléfonos móviles) */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .logo {
        max-width: 180px;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .contact-box {
        width: 260px;
        padding: 10px;
    }

    .contact-box h3 {
        font-size: 1.1em;
    }

    .contact-box p {
        font-size: 0.9em;
    }
}

/* Responsivo para pantallas muy pequeñas (teléfonos compactos) */
@media (max-width: 480px) {
    .logo {
        max-width: 100px;
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 0.9em;
    }

    .contact-box {
        width: 240px;
        padding: 8px;
    }

    .contact-box h3 {
        font-size: 1em;
    }

    .contact-box p {
        font-size: 0.8em;
    }
}
