* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    color: #FFF;
}

body {
    background-color: #000;
    overflow: hidden;
    height: 100vh;
}

.section {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    z-index: 200;
    position: absolute;
}

.question {
    font-weight: 200;
    font-size: 5vh;
    text-align: center;
}

.question-italic {
    font-weight: 500;
}

.english-button-container{
	height: 10vh;
	width: 100%;
	display: flex;
	justify-content: end;
	align-items: center;
}

	.english-button{
		padding: 7px;
		border: none;
    	background-color: #AE340F;
    	font-size: 1.7vh;
    	letter-spacing: 2px;
    	padding: 1.5vh 2.5vh;
    	margin: 20px;
    	cursor: pointer;
	}

.container {
    display: flex;
    height: 90vh;
    background-color: #000;
    flex-direction: row;
}

.half {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    transition: opacity 0.3s ease; /* Transición suave para la opacidad */
    margin: 5px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0); /* Color fijo de fondo */
    opacity: 0.9; /* Opacidad por defecto */
    will-change: opacity;

    transition: opacity 0.3s ease; /* Transición suave en la opacidad */
}

.text-container{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

	.logotype {
  	 	height: 8vh;
	}

	.text {
    	font-size: 2.4vh;
    	margin: 20px;
    	text-align: center;
	}


@media (max-width: 480px) {
   

		.question{
			font-size: 3vh;
			width: 80%;
		}

	.english-button-container{
		justify-content: center;
	}

		.english-button{
			font-size: 1.5vh;
		}

    .container{
    	flex-direction: column;
    	height: 85vh;
    }

    .half {
        height: 50%;
        width: 100vw;
    }

    	.logotype {
  	 		width: 70%;
		}

		.text {
	    	width: 70%;
	    	font-size: 2vh;
	    	font-weight: 100;
	    	margin: 5px;
		}


}



/*ANIMATIONS*/

.animation__question {
    animation-name: appear-text;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.animation__opening {
    animation-name: opening;
    animation-duration: 6s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes appear-text {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes opening {
    80% {
        opacity: 1;
    }
    99% {
        opacity: 0;
        transform: translateX(0);
    }
    100% {
        transform: translateX(100vw);
    }
}