* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    height: 100vh;
    font-size: 16px;
    font-family: "Hanken Grotesk", serif;
}
h1 {
    text-align: center;
}
.container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
input {
    min-width: 80%;
    border-radius: 0.5rem;
    background-color: #ffb3c1;
    border: none;
    font-size: 1.2rem;
    padding: 0.5rem;
}
.output {
    width: 100%;
    min-height: 100%;
    background-color: #ade8f4;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: cener;
    justify-content: center;
    flex-direction: column;
    padding: 0.5rem;
}
.encode,
.decode {
    display: flex;
    padding: 1rem 0 1rem 1rem;
    border-radius: 1rem;
    /* min-width: 360px; */
    outline: none;
}
.encode {
    background-color: #ff8fa3;
}
.decode {
    background-color: #48cae4;
}
.decode input {
    background-color: #ade8f4;
}
.icons {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.icon {
    width: 24px;
    height: 24px;
    color: #22223b;
    font-weight: 700;
}
.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
button {
    padding: 0.5rem 1rem;
    color: white;
    border: none;
    border-radius: 0.5rem;
    background-color: #22223b;
    font-size: 1rem;
    cursor: pointer;
}
