* {
    background: #e4eafc;
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
}

#logo {
    padding-top: 10px;
    margin-left: 10px;
    width: 2rem;
}

main {
    display: flex;
    margin: 0 5rem;
}

section {
    width: 50%;
}

.ingreso_texto, .mensaje {
    border: none;
    resize: none;
    outline: none;
    overflow: auto;
}

.ingreso_texto {
    width: 100%;
    height: 600px;
    /* margin-top: 5rem; */
    padding: 2rem 0;
    color:blueviolet;
    opacity: .8;
    text-transform: lowercase;
}

/* ::placeholder { color:purple;} */

.mensaje {
    background: #F3F5FC;
    background-image: url(imagenes/Muñeco.png);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    box-shadow: 25px 10px 20px -8px rgba(0, 0, 0, 0.08);
    margin: auto;
    height: 85%;
    padding: 1rem 2rem;
    display: flex;
/*     position: fixed; */
    color: black;
}

.limpiar {
    display: flex;
    position: absolute;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background: #F3F5FC;
    padding: .5rem;
    margin: 5px;
    top: 2rem;
    left: 88%;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 2px 20px -10px rgba(0, 0, 0, 0.8);
    transition: all 1s ease;
}
.limpiar img {
    background: none;
}
.limpiar:hover {
    translate: 0 -5px;
}
.limpiar:active {
    translate:  0 5px;
}

.botones {
    display: flex;
    border: none;
}

.boton_encriptar, .boton_desencriptar, .copiar {
    border-radius: 20px;
    height: 60px;
    width: 330px;
    cursor: pointer;
    margin: 5px 10px;
    /* opacity: .8; */
    transition: all 1s ease;
}

.boton_encriptar {
    border: none;
    background: #A267AC;
    color: #FFFFFF;
    margin-left: 0;
}
.boton_encriptar:hover {
    background: none;
    color: #A267AC;
    border: 1px solid #A267AC;
    box-shadow: 0px 15px 33px -8px rgba(0, 0, 0, 0.2);
    translate: 0 -5px;
}
.boton_encriptar:active {
    transform: scale(.95);
    translate: 0 5px;
}

.boton_desencriptar {
    background: none;
    color: #A267AC;
    border: 1px solid #A267AC;
}
.boton_desencriptar:hover {
    background: #A267AC;
    color: #FFFFFF;
    border: none;
    box-shadow: 0px 15px 33px -8px rgba(0, 0, 0, 0.2);
    translate: 0 -5px;
}
.boton_desencriptar:active {
    transform: scale(.95);
    translate: 0 5px;
}

.botones_copiar {
    margin: 3% auto auto;
/*     position: fixed; */
}

.copiar {
    background: #A267AC;
    color: #FFFFFF;
    margin: auto;
    border: none;
}
.copiar:hover {
    background: none;
    color: #A267AC;
    border: 1px solid #A267AC;
    box-shadow: 0px 15px 33px -8px rgba(0, 0, 0, 0.2);
    translate: 0 -5px;
}
.copiar:active {
    transform: scale(.95);
    translate: 0 5px;
}

.informacion {
    font-size: small;
    opacity: .5;
    height: auto;
}

footer {
    text-align: center;
    background: #A267AC;
    color: #FFFFFF;
    height: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: medium;
    position: fixed;
    bottom: 0;
    width: 100%;
}
footer h4 {
    background: none;
    margin: 0 5px;
}
.copy {
    background: none;
    width: 150px;
}
.redes {
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}
.redes img, a {
    background: none;
}
.redes img {
    margin: 0 5px;
}

/* Telefonos */
@media only screen and (max-width: 480px) {
    * {
        font-size: 18px;
    }

    .logo {
        width: 1rem;
    }

    main {
        display: block;
        margin: 0 2rem;
    }

    section {
        width: 100%;
    }

    .ingreso_texto {
        height: 300px;
        padding: 1rem 0;
        font-size: 1.5rem;
    }

    .informacion {
        font-size: x-small;
    }

    .boton_encriptar, .boton_desencriptar, .copiar {
        height: 2.5rem;
        margin: 5px;
    }

    .mensaje {
        height: 200px;
        width: 80%;
        background-image: none;
        padding: .5rem 1.5rem;
    }

    .limpiar {
        margin: 0;
        top: 475px;
        left: 90%;
        padding: 4px;
    }

    footer {
        height: 2.5rem;
        font-size: smaller;
    }
}

/* Tablets */
@media only screen and (min-width: 481px) and (max-width: 810px) {
    * {
        font-size: 24px;
    }

    .logo {
        width: 1rem;
    }

    main {
        display: block;
        margin: 0 2.5rem;
    }

    section {
        width: 100%;
    }

    .ingreso_texto {
        height: 400px;
        padding: 1rem 0;
        font-size: 2rem;
    }

    .informacion {
        font-size: small;
    }

    .boton_encriptar, .boton_desencriptar, .copiar {
        height: 3.5rem;
        margin: 1rem auto;
    }

    .mensaje {
        height: 280px;
        width: 85%;
        background-image: none;
        padding: 1rem 1.5rem;
    }

    .botones_copiar {
        margin: 0;
    }

    .limpiar {
        margin: 0;
        top: 620px;
        left: 93%;
        padding: 8px;
    }

    footer {
        height: 2.5rem;
        font-size: smaller;
    }
}