<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fraternidad Universal</title>
    <style>
        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .hero {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 100vh;
            background-image: url(frater.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
        }

        .content {
            background-color: rgba(0, 0, 0, 0.6);
            padding: 20px;
            border-radius: 10px;
        }

        .content h1 {
            font-size: 3rem;
            font-weight: bold;
            margin: 0;
        }

        .content p {
            font-size: 1.5rem;
            margin: 10px 0;
        }

        .content .subtitle {
            color: #f5a623;
            font-size: 1.2rem;
        }

        .button-container {
            margin-top: 20px;
        }

        .content a {
            display: inline-block;
            text-decoration: none;
            color: white;
            background-color: #f5a623;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .content a:hover {
            background-color: #d4881f;
        }

        @media (max-width: 768px) {
            .content h1 {
                font-size: 2rem;
            }

            .content p {
                font-size: 1rem;
            }

            .content a {
                font-size: 1rem;
                padding: 8px 16px;
            }
        }
    </style>
</head>
<body>
    <div class="hero">
        <div class="content">
            <h1>FRATERNIDAD UNIVERSAL</h1>
            <p>Encuentro de Hermanos con Jesucristo</p>
            <p class="subtitle">En el camino, la verdad y la vida</p>
            <div class="button-container">
                <!--a href="#">ACCEDER AL CONTENIDO</a-->
				[]            </div>
        </div>
    </div>
</body>
</html>
