*{
	margin: 0;
	padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root{
    
    --degradado: linear-gradient(to bottom, #3FFF00 0%,#212121 5%,#212121 95%,#3FFF00 100%);
    --color-general: #3FFF00;
    --color-negro: #000000;
    --color-naranja: #FF5500;
}



body{
    font-family: 'Roboto', sans-serif;
    background: black;
}

p{
    color: white;
}

h1{
    color: var(--color-general);
}


.contenido{
    width: 100%;
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.contenido-politicas{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0 50px 0;
}



.logo {
width: 30%;
}

.txt-enviado{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}



.titulo{
    margin-top: 50px;
}



.txt-enviado h1 {
    font-size: 52px;
}

.texto{
    margin: 20px 0 50px;
    display: flex;
    justify-content: center;
}

.texto-politicas {
    margin: 20px 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.texto p {
    
    text-align: center;
    font-size: 22px;
    width: 50%;

}

.txt {
        
    font-size: 22px;
    width: 50%;
}

.texto p a{

    color: var(--color-general);

}


.btn{

    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    background-color: var(--color-negro);
    padding: 10px 30px;
    border: 2px solid var(--color-general);
    box-shadow: 0px 2px 15px 0px var(--color-general);
    border-radius: 50px;
    transition : 1000ms;
    transform: translateY(0);
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.btn:hover{

    transition : 1000ms;
    padding: 10px 50px;
    transform : translateY(-0px);
    color: #ffffff;
    border:2px solid var(--color-general);
}

.enlace{
    text-decoration: none;
}

@media(max-width: 1200px) {

    .logo {
        width: 70%;
    }

    .txt-enviado h1 {
        font-size: 32px;
    }

    .texto p {
  
        width: 80%;   
        font-size: 18px; 
    }

    .txt {
  
        width: 80%;   
        font-size: 18px; 
    }

   


}

.span-titulos{
    color: var(--color-general);
}




/*///////////////// FOOTER ////////////////////////*/

.contenedor-footer {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--color-general);
}

.contenedor-footer p{
    color: white;
}

/*///////////////////////////////////////////////////*/