* {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}

header {
    position: fixed;
    top: 0;
    padding: 1rem;
    z-index: 5;
    color: white;
    mix-blend-mode: difference;
    width: 100%;
    backdrop-filter: blur(2px);

    a {
        color: white;
    }
}

#logo {
    font-weight: 800;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;

    #hero {

        min-height: 100vh;
        width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;


        background: url('./img/bg.avif');
        background-size: cover;
        background-position: 50%;
        background-repeat: no-repeat;

        .container {
            width: 80%;
            max-width: 680px;
            padding: 2rem;
            backdrop-filter: blur(2px);
            background-color: rgba(255, 255, 255, 0.5);

            display: flex;
            flex-direction: column;
            gap: 1rem;

            .ctas {
                margin-top: 24px;
            }

        }
    }

    #about {
        min-height: 70vh;
        display: flex;
        align-items: center;
        padding: 2rem;

        .container {
            max-width: 680px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
    }

    #contacto {

        display: flex;
        flex-direction: column;
        align-items: center;

        .container {
            /* max-width: 800px; */
            width: 100%;
            padding: 2rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap-reverse;

            iframe {
                width: 100%;
                /* max-width: 400px; */
                min-width: 300px;
                flex: 1;
                display: flex;
            }

            .data {
                display: flex;
                gap: 1rem;
                flex-direction: column;
                flex: 1;

                p {
                    display: flex;
                    align-items: center;
                    gap: 1rem;
                }

                a {
                    padding: 0;
                }
            }
        }
    }

}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 24;
    font-weight: 400;
}

a {
    font-weight: 600;
    text-decoration: none;
    color: #111;
    padding: 0.25rem 0.5rem;
}

a:hover {
    text-decoration: underline;
}

a.button {
    padding: .5rem 1rem;
    text-transform: uppercase;
    border: 2px solid;
    border-radius: 8px;
    font-size: 12px;
}

a.button:hover {
    text-decoration: none;
    opacity: 0.8;

}

.button.primary {
    color: white;
    background-color: #111;
    border: 2px solid #111;
}

footer {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media screen and (max-width:800px) {
    header {
        background: rgba(0, 0, 0, 0.4);
        mix-blend-mode: normal;
    }

}