.principal {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.parte_izquierda {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.logo {
    width: 10%;
    margin-top: 36.48px;
    margin-left: 40px;
}

.entrada {
    width: 75%;
    height: 200px;
    margin: 72px auto;
    border: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    color: #0A3871;
}

::placeholder {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    color: #0A3871;
}

.botones {
    width: 75%;
    margin: 250px auto 0;
}

.advertencia {
    height: 16.4px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
}

button {
    height: 61px;
    width: 328px;
    margin-top: 14.55px;
    border-radius: 24px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    border: 1px solid #0A3871;
    background: #D8DFE8;
    color: #0A3871;
    transition: 0.5s all;
    cursor:pointer;
}

button:hover {
    transform: scale(1.05);
}

.encriptar {
    margin-right: 31.7px;
    display: inline-block;
    background: #0A3871;
    color: white;
}

.parte_derecha {
    width: 30%;
    height: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.salida {
    width: 80%;
    margin: 36px auto;
    padding-bottom: 80px;
    box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.2);
    border-radius: 32px;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.salida p {
    margin: 0;
    text-align: center;
}

.dentro_de_salida:first-child {
    margin: 0 auto;
    width: 70%;
}

.dentro_de_salida:nth-child(2) {
    margin-top: 29.1px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;  
    font-size: 24px;
    line-height: 120%;
    color: #343A40;
}

.dentro_de_salida:nth-child(3) {
    margin-top: 14.55px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #495057;
}

.convertido {
    width: 90%;
    height: 200px;
    margin: 72px auto;
    border: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #495057;
}

#copiar {
    width: 70%;
    margin: 0 auto;
}

.creditos {
    margin: 40px auto 40px;
    text-align: center;
    font-family: 'Inter';
    font-style: normal;
    font-size: 16px;
    line-height: 120%;
    color: darkblue;
}

.linkedin {
    margin-left: 30px;
    margin-right: 30px;
}

@media screen and (max-width:770px) {
    .parte_derecha, .parte_izquierda {
        width: 100%;
    }

    .botones {
        width: 75%;
        margin: 200px auto 0;
    }

    button {
        width: 100%;
    }

    .dentro_de_salida:first-child {
        width: 0;
        height: 0;
        margin: auto;
    }
    
}

@media screen and (max-width:480px) {

    .parte_izquierda, .parte_derecha {
        width: 100%;
    }

    .entrada {
        width: 100%;
        text-align: center;
    }

    .botones {
        margin: 50px auto 0;
    }

    .linkedin {
        margin-left: 10px;
        margin-right: 10px;
    }

    .creditos {
        margin: 20px auto 20px;
    }
}