:root{
    --font-family: 'Roboto', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: #f4f4f4;
    color: #ffffff;
    background: linear-gradient(-45deg, #09bd0c, #027e0d, #0b7668, #08466f);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

.container{
 display: flex;
 flex-direction: column-reverse;
 justify-content: center;
 gap: 3rem;
  padding-top: 5rem; 
}
.container_titles{
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.container_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
.container_content_logo{
    width: 250px;
    height: 120px;
    object-fit: cover;
}
.container_title{
    font-size: 1.5rem;
}

.container_paragraph{
    font-size: 0.9rem;
}
.container_lenguaje{
    display: flex;
    gap: 10px;
    align-items: end;
    justify-content: end;
    padding: 2%;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #37db34;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.6s ease;
}

.download-button:hover {
    background-color: #b92929;
}
.icon_lenguaje{
    width: 30px;
    height: 30px;
    padding: 0 10px;
}
/* Estilos para botones en inglés */
.lenguaje_button{
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* Pantalla tableta*/

@media (min-width: 768px) {
    .container {
        flex-direction: row;
        padding-top: 15rem;
        gap: 0rem;
    }
    .container_titles{
        gap: 2px;
    }
    .container_title{
        font-size: 2.5rem;
    }
    .container_paragraph{
        font-size: 1rem;
    }
    .container_content_logo{
        width: 350px;
        height: 120px;
        object-fit: cover;
    }
    .container_lenguaje{
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .icon_lenguaje{
        width: 15px;
        height: 15px;
        padding: 0 10px;
    }
    .icon_lenguaje{
        width: 30px;
        height: 30px;
    }
}

/* Pantalla Escritorio  */

@media (min-width: 1024px) {
    .container {
        flex-direction: row;
        padding-top: 9rem;
        gap: 10rem;
    }
    .container_titles{
        gap: 2px;
    }
    .container_title{
        font-size: 2.5rem;
    }
    .container_paragraph{
        font-size: 1.1rem;
    }
    .container_content_logo{
        width: 450px;
        height: 220px;
        object-fit: cover;
    }
    .icon_lenguaje{
        width: 40px;
        height: 40px;
        padding: 0 10px;
    }

}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
