@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&family=Roboto:wght@100;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;700&family=Open+Sans&family=Roboto:wght@500&display=swap');

.container{
    width: 100%;
}

.caption{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
}

.image-container{
    width: 100%;
    position: relative;
}

.franja-color{
    position: absolute;
    width: 30%;
    height: 100%;
    background-color: rgba(23, 26, 73,0.7);
    top: 0;
    right: 70%;
    left: 0;
    bottom: 0;
    margin: auto;
}

.image{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: blur(5px);
}

.title-caption{
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    background: linear-gradient(85deg, rgb(255, 255, 255), rgb(23, 26, 73));
    -webkit-background-clip: text;
    color: transparent;
}

.keywords-caption:focus, .keywords-caption:visited, .keywords-caption:link, .keywords-caption:active{
    color: white;
}

.keywords-caption{
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: white;
	width:fit-content;
	height: fit-content;
	text-align:left;
}

.text-caption{
    width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    position: absolute;
    left: 0;
    top: 30%;
    right: 100%;
    bottom: 0;
    margin-left: 100px;
}

.text-caption .keywords-caption{
    margin-left: 5px;
    margin-bottom: 15px;
}

.button-caption:focus, .button-caption:visited, .button-caption:link, .button-caption:active{
    color: white;
}



.button-caption{
    background-color: rgb(23, 26, 73);
    width: 250px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-left: 5px;
    margin-top: 20px;
}

@media screen and (max-width:1366px){
    .title-caption{
        font-size: 4rem;
    }

    .keywords-caption{
        font-size: 1rem;
    }

    .button-caption{
        font-size: 1rem;
    }
}

@media screen and (max-width:1100px){
    .text-caption{
        width: 600px;
        margin-left: 80px;
    }

    .title-caption{
        font-size: 3rem;
    }

    .keywords-caption{
        font-size: 0.8rem;
    }

    .button-caption{
        font-size: 0.8rem;
    }
}

@media screen and (max-width:800px){
    .text-caption{
        width: 400px;
        margin-left: 50px;
    }
}

@media screen and (max-width:600px){
    .text-caption{
        width: 350px;
        margin-left: 20px;
        justify-content: center;
        align-items: center;
        top: 0;
    }

    .button-caption{
    
    }
}