:root{
    /* Primary colors */
    --back-color:#ececee;
    --encripted-color: rgb(247, 247, 247);
    --font-colors: rgb(10,56,113);
}
*, *:before, *:after {
    box-sizing: inherit;
}

*{
    font-family: 'Roboto', sans-serif;
    margin:0px;
    padding:0px;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    overflow:hidden;
}

main{
    background-color:var(--back-color);
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content:space-between;
    position: relative;
    
}

.navbar-img{
    margin-top:0.5rem;
    margin-left:1rem;
    padding:2px;
}
.navbar-img:hover{
    opacity: 0.25;
}
.navbar-git{
    height:50px;
    width:47.5px;
    margin-left:80.7rem;
}
.navbar-git:hover{
    opacity: 0.25;
}
.left{
    width: 65%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.text-area{
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    width:100%;
    height:50%;
    border:none;
    text-align:start;
    outline: none;
    padding:1.5rem;
    font-weight: bold;
    background-color: var(--back-color);
}
.text-area::placeholder{
    font-size:2rem;
    font-weight:bold;
    color:var(--font-colors);
    align-self: flex-start;
    
}

.text-area::after{
    font-weight: bold;
    color:var(--font-colors);
}

.right{
    min-width: 300px;
    background-color: #FFFFFF;
    border-radius: 32px;
}

.right label{
    display: flex;
    justify-content: center;
    color:var(--font-colors);
    font-weight: bold;
    padding:1.5rem;
}

.text-input{
    display: flex;
    resize: vertical;
    width:100%;
    height:50%;
    border:none;
    outline: none;
    text-align:center;
    font-weight: bold;
    
    
}
.muneco{
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-height: 100%;
    height: auto;
}

.muneco:hover{
    opacity: 0.5;
}

.btn-copy-footer{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

}

.button-copy{
    outline: 0;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 3px;
    color: #fff;
    background: #000;
    height: 3rem;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding: 7px 20px;
    text-align:center;
    align-self:center;
    

}
.button-copy:hover{
    color: #000;
    background: rgb(255, 218, 87);
}
    

.encrypt{
    outline: 0;
    border: 0;
    cursor: pointer;
    background: radial-gradient( 100% 100% at 100% 0%, #89E5FF 0%, rgb(10,56,113) 100% );
    box-shadow: 0px 2px 4px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px rgb(58 65 111 / 50%);
    padding:10px;
    border-radius: 6px;
    color: #fff;
    height: 3rem;
    width:25rem;
    font-size: 18px;
    text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
    
} 

.encrypt:hover {
    box-shadow: 0px 4px 8px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px rgb(10,56,113);
    transform: translateY(-2px);
}

.encrypt:active{
    box-shadow: inset 0px 3px 7px  rgb(10,56,113);
    transform: translateY(2px);
}

.unencrypt{
    outline: 0;
    border: 0;
    cursor: pointer;
    background: #FCFCFD;
    box-shadow: 0px 2px 4px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px #d6d6e7;
    height: 3rem;
    width:25rem;
    padding:10px;
    font-size: 18px;
    border-radius: 6px;
    color: #36395a;
    
    
}

.button-cont{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    height: 35%;
    gap:5rem;

}

.unencrypt:hover {
    box-shadow: 0px 4px 8px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px #d6d6e7;
    transform: translateY(-2px);
}

.unencrypt:active{
    box-shadow: inset 0px 3px 7px #d6d6e7;
    transform: translateY(2px);
}

.info{
    align-self:flex-end;
    padding:2px;
    font-size:small;
}
img.alerta{
    margin-right:5px;
}