@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');

*{
    background: #f3f5fc;
    font-family: "Inter";
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
}
.logo{
    padding-top: 10px;
    margin-left: 10px;
    width: 8%;
}
main{
    display: flex;
    margin-bottom: 50px;
    margin-left: 80px;
}
.text-area{
    border: none;
    color: #0a3871;
    margin-top: 90px;
    text-transform: lowercase;
}
::placeholder{
    color: #0a3871;
    outline: none;
}
.mensaje{
    background: white;
    background-image: url("/imagenes/muneco.png");
    background-repeat: no-repeat;
    border: none;
    border-radius: 24px;
    color: #0a3871;
    margin-left: 98px;
    margin-top: 20px;
    padding-left: 20px;
    position: fixed;
}
.mensaje:focus {
    outline:none
}
.botones{
    display: flex;
    margin-top: 18px;
}
.btn-desencriptar{
    background: #d8dfe8;
    border: 1px solid #0a3871;
    border-radius: 24px;
    color: #0a3871;
    cursor: pointer;
    height: 67px;
    margin-left: 30px;
    width: 328px;

}

.btn-encriptar{
    background-color: #0a3871;
    border: 1px solid #0a3871;
    border-radius: 24px;
    color: white;
    cursor: pointer;
    height: 67px;
    width: 328px;
}
.copiar{
    border: 1px solid#0a3871;
    border-radius: 24px;
    color: #0a3871;
    cursor: pointer;
    height: 67px;
    margin-left: 108px;
    margin-top: 402px;
    position: absolute;
    width: 336px;
}
.informacion{
    color: #495057;
    font-size: 18px;
}
footer {
    background-color: #f3f5fc;
    color:#0a3871;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

footer p {
    background-color: transparent;
    font-size: 24px;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: transparent;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    main {
        flex-direction: column;
        margin-left: 20px;
        margin-right: 20px;
    }
    .mensaje {
        margin-left: 0;
        margin-top: 20px;
        position: static;
        width: 100%;
    }

    .copiar {
        margin-left: 0;
        margin-top: 20px;
        position: static;
        width: 100%;
    }

    .botones {
        flex-direction: column;
    }

    .btn-encriptar, .btn-desencriptar {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }

    footer {
        position: static;
        margin-top: 50px;
    }
}
