* {
    box-sizing: 0;
    margin: 0;
    padding: 0;
    font-family: 'poppins';
}

h1 {
    font-size: 25px;
    text-align: center;
}

.content {
    background-color: #000000;
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

a {
    text-decoration: none;
    color: #303030;
    transition: 0.2s;
}

a:hover {
    letter-spacing: 2px;
}

.input {
    background-color: transparent;
    width: 90%;
    height: 80vh;
    display: flex;
    position: relative;
}

#input-text {
    position: absolute;
    height: 50%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0 auto;
    font-size: 20px;
    background-color: transparent;
    border: 0;
    outline: 0;
    color: rgb(255, 255, 255);
}

#output {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

#text {
    width: 100%;
    height: 425px;
    outline: 0;
    border: 0;
    font-size: 20px;
    resize: none;
}

::selection {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

.btn-copiar {
    background-color: #8000ff;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    border: 2px solid #000000;
    font-size: 17px;
    color: white;
    box-shadow: 5px 5px 0 black;
    transition: 0.15s;
}

.img1 {
    width: 95%;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 200px;
}

.info {
    padding-bottom: 15px;
    font-size: 15px;
    color: rgb(100, 100, 100);
}

.btn-criptografar {
    background-color: #000000;
    margin-bottom: 15px;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    border: 2px solid #00f3a7;
    font-size: 17px;
    color: rgb(255, 255, 255);
    box-shadow: 5px 5px 0 #00f3a7;
    transition: 0.15s;
}

.btn-criptografar:hover {
    background-color: #000000;
    box-shadow: 2px 2px 0 #00f3a7;
    cursor: pointer;
}

.btn-descriptografar {
    margin-bottom: 15px;
    background-color: #000000;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    border: 2px solid #fe4400;
    font-size: 17px;
    color: #ffffff;
    box-shadow: 5px 5px 0 #fe4400;
    transition: 0.15s;
}

.btn-descriptografar:hover {
    background-color: #000000;
    box-shadow: 2px 2px 0 #fe4400;
    cursor: pointer;
}

::-webkit-input-placeholder {
    color: rgb(100, 100, 100);
}