*{
    padding: 0;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

body {
    background-color: #F3F5FC;
    min-height: 100vh;
    width: 100%;
    font-family: 'Roboto Condensed', sans-serif;
}

textarea {
    font-family: 'Roboto Condensed', sans-serif;
    background: transparent;
    border: none;
    outline: none;
    font-weight: 400;
    resize: none;
}

.d-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.w-100{
    width: 100%;
}

.w-70{
    width: 70%;
}

.w-30{
    width: 30%;
}

.w-20px{
    width: 400px;
}

.container{
    position: relative;
    padding: 30px 120px
}

.logo{
    width: 100%;
    font-size:100px;
    color: #0A3871
}

.section{
    width: 80%;
    margin: 0 auto;
    min-height:70vh;
}

.texto{
    width: 100%;
    min-height: 50vh;
    font-size: 25px;
    font-style: normal;
    color: #0A3871;
}

.buttons{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.info{
    display: flex;
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #495057;
    opacity: 0.8;
    margin-bottom: 10px
}

.info span{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    width: 20px;
    height: 20px;
    background: #495057;
    border-radius: 50%;
    margin-right: 5px;
}

.info span::after{
    content: '!';
}

.container-right{
    padding: 20px;
    background: #fff;
    min-height:80vh;
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
    border-radius: 32px;
}

.contenido-inicial h3{
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    color: #343A40;
}

.contenido-inicial p{
    font-size: 20px;
    text-align: center;
    color: #495057;
}

.div-resultado{
    align-items: center;
    min-height:70vh;
}


button{
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.24);
}

.btn-encriptar{
    align-items: flex-start;
    flex-direction: row;
    padding: 24px;
    position: static;
    width: 250px;
    height: 67px;
    left: 0px;
    top: 0px;
    background: #0A3871;
    border: 1px solid #0A3871;
    color: #FFFFFF;
    border-radius: 24px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.btn-desencriptar{
    align-items: flex-end;
    flex-direction: row;
    padding: 24px;
    position: static;
    width: 250px;
    height: 67px;
    background: transparent;
    border: 1px solid #0A3871;
    color: #0A3871;
    box-sizing: border-box;
    border-radius: 24px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.btn-encriptar:hover{
    background: transparent;
    border: 1px solid #0A3871;
    color: #0A3871;
}

.btn-desencriptar:hover, .btn-copy:hover{
    background: #0A3871;
    border: 1px solid #0A3871;
    color: #FFFFFF;
}

.resultado{
    padding: 34px 20px;
    width: 100%;
    text-align: center;
    min-height: 60vh;
    font-weight: 400;
    font-size: 24px;
}

.btn-copy{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 24px;
    width: 100%;
    height: 67px;
    border: 1px solid #0A3871;
    box-sizing: border-box;
    border-radius: 24px;
    background: transparent;
}

.section-footer{
    z-index: -1;
    position: relative;
    width: 100%;
    min-width: 100%;
    height: 100px;
    background-color: #0A3871;
    border-radius: 100% 100% 0 0;
}

.content-footer{
    justify-content: space-between;
    align-items: center;
}

.content-footer p{
    color: #FFFFFF;
    font-weight: bold;
    margin-top:20px
}

@media (max-width: 1276px){
    .container-left{
        width: 90%;
        margin-bottom: 20px;
    }
    .section{
        width: 100%;
        padding: 0;
    }
    .container{
        padding: 30px;
        position: relative;
        flex-direction: column;
    }
    .container-right{
        width: 90%;
        margin-bottom: 20px;
    }

    .container-mensaje{
        width: 90%;
    }
}

@media (max-width: 1050px){
    .container-left{
        width: 90%;
        margin-bottom: 20px;
    }
    .section{
        width: 100%;
        padding: 0;
    }
    .container{
        padding: 30px;
        position: relative;
        flex-direction: column;
    }
    .container-right{
        width: 90%;
        margin-bottom: 20px;
    }

    .container-mensaje{
        width: 90%;
    }
}



@media (max-width: 750px){

    .section{
        width: 100%;
        padding: 0;
    }
    .container{
        padding: 30px;
        position: relative;
        flex-direction: column;
    }
    .container-right{
        width: 90%;
        margin-bottom: 20px;
    }

    .buttons{
        flex-direction: column;
        width: 100%;
    }

    button.btn-encriptar, button.btn-desencriptar{
        width: 100%;
        margin-bottom: 20px;
    }

    .container-mensaje{
        width: 90%;
    }

    .content-footer{
        flex-direction: column
    }
}

@media (max-width: 750px){
    .buttons{
        flex-direction: column;
        width: 100%;
    }
}