@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --green: #106B3A;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

.container {
    width: 100vw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#politica {
    background-image: linear-gradient(var(--green), var(--green)), url("assets/privacidad.jpg");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

#aviso {
    background-image: linear-gradient(black, black), url("assets/aviso.jpg");
    background-size: cover;
    background-position: center;
    background-blend-mode: saturation;
}

.element {
    display: flex;
    flex: 1;
    transition: 800ms ease;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.element:hover {
    flex: 2;
    font-size: x-large;
}

h1 {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    margin: 0;
    font-weight: 800;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.logo {
    position: absolute;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo > div > img {
    width: 200px;
    height: 200px;
}

.circle {
    margin: 0 8vw;
    padding: 20px;
    border-radius: 50%;
    background: #fff;
}


.btn-1 {
    background: transparent;
    color: white;
    border: 2px solid var(--green);
    padding: 1rem 4rem;
    border-radius: 15px;
}

.btn-2 {
    background: white;
    color: var(--green);
    padding: 1rem 2rem;
    border-radius: 15px;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .logo {
        height: unset;
    }
    
    h1 {
        font-size: 1rem;
    }

    .element {
        width: 100%;
    }

    .logo > div > img {
        width: 100px;
        height: 100px;
    }
}