html, body {
            height: 100%;
            margin: 0;
        }

        .bg-full {
            background-image: url('En-construccion-Solage.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;   
            padding-left: 60px;   
            color: #fff;
        }

        .content {
            max-width: 450px;
        }

        .content h1 {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.2;
        }

        .copy {
            font-size: 12px;
            opacity: 0.85;
            position: absolute;
            bottom: 20px;
            left: 60px;
        }

        @media(max-width: 768px) {
            .bg-full {
                padding-left: 30px;
                padding-right: 30px;
                text-align: center;
                flex-direction: column;
                justify-content: center;
                background-position: left;
            }

            .copy {
                position: static;
                margin-top: 20px;
                text-align: center;
            }

            .content h1 {
                font-size: 32px;
            }
        }
