/*Estilos generales de la página*/
*
{
    background: #F3F5FC;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
}

/*Estilos del logo*/
.logo
{
    padding-top: 12px;
    padding-left: 0px;
    width: 8%;
}

/*Estilos del main de la página*/
main
{
    display: flex;
    margin-bottom: 50px;
    margin-left: 80px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

#zonaEncriptar
{
    flex: 1;
    padding: 5px;
    /*min-width: 350px;*/
}

#zonaTexto
{
    flex: 2;
    padding: 5px;
}

/*Estilo para text area de ingresar texto*/
.text-area
{
    border: none;
    color: #0A3871;
    margin-top: 30px;
    text-transform: lowercase;
    margin-left: 50px;
}
::placeholder
{
    color: #0A3871;
}
.text-area:focus
{
    outline: none;
}

/*Estilos para el mensaje de informacion*/
.exclamacion
{
    margin-left: 60px;
}
.informacion
{
    height: 2px;
    display: flex;
    display: inline-flex;
    color: #495057;
    font-size: 18px;
    margin-left: 5px;
    padding-top: 2px;
}

/*Estilo para los botones*/
.botones
{
    display: flex;
    margin-top: 2px;
    margin-left: 50px;
}

.btn-encriptar
{
    background-color: #0A3871;
    border: 1px solid #0A3871;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    height: 60px;
    width: 325px;
}

.btn-desencriptar
{
    background-color: #D8DFE8;
    border: 1px solid #0A3871;
    border-radius: 25px;
    color: #0A3871;
    cursor: pointer;
    height: 60px;
    width: 325px;
    margin-left: 30px;
}

/*Estilo para el text area de encriptado*/
.mensaje
{
    background: white;
    background-image: url("Recursos/Muñeco.png");
    background-repeat: no-repeat;
    border: none;
    border-radius: 24px;
    color: #0A3871;
    margin-left: auto;
    margin-top: 10px;
    padding-left: 20px;
    position: static;
    margin-bottom: 20px;
}
.mensaje:focus
{
    outline: none;
}

#mensajeUs
{
    /*position: fixed;*/    
    margin-top: auto;
    font-size: 24px; 
    text-align: center; 
    margin-left: auto;  
    display: block;   
    font-weight: 700;
    position: sticky;
}

#mensajeUs2
{
    position: fixed;
    margin-top: auto;
    font-size: 16px;
    text-align: center;
    margin-left: auto;
    display: block;
    position: sticky;
    font-weight: 400;
}


/*Estilos para boton copiar del area de encriptado*/
.btn-copiar
{
    border: 1px solid #0A3871;
    border-radius: 25px;
    color: #0A3871;
    cursor: pointer;
    height: 67px;
    margin-left: 50px;
    margin-top: auto;
    /* padding-top: 5px; */
    /* margin-top: 5px; */
    position: relative;
    width: 335px;
}

/*Oculta el botón copiar hasta activar un botón*/
#btn-copiarid
{
    display: none;
}

footer
{
    text-align: center;
    background-image: url(Recursos/kseniya-lapteva-A4rqd2g-eLo-unsplash.jpg);
    padding: 40px;
    color: white;
}


@media screen and (max-width: 480px)
{
    main
    {
        max-width: auto;
    }
    .logo
    {
        text-align: center;
        width: 20%;
        margin-left: 20%;
    }
    #zonaEncriptar
    {
        width: 100%;
        max-width: 480px;
    }
    #zonaTexto
    {
        width: 100%;
        max-width: 480px;
    }
    .text-area
    {
        margin-left: 0;
        max-width: 300px;
        columns: 10;
    }
    .mensaje
    {
        margin-left: 0;
        max-width: 300px;
        columns: 10;
    }
    .exclamacion
    {
        margin-left: auto;
    }
    .botones
    {
        margin-left: 0;
        width: auto;
    }
    .btn-encriptar
    {
        width: 50%;
    }
    .btn-desencriptar
    {
        width: 50%;
        margin-left: auto;
    }
    .btn-copiar
    {
        margin-left: auto;
    }
    footer
    {
        width: auto;
        min-width: 375px;
    }
}

@media screen and (max-width: 820px)
{
    .mensaje
    {
        margin-left: 160px;
    }
    .btn-copiar
    {
        margin-left: 160px;
    }
    footer
    {
        width: auto;
        max-width: 880px;
    }
}