.container {
    display: flex;
    flex-direction: column;
    color: var(--Brand-Color-001);
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.MPlogo {
    width: 450px;
}

.container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.container textarea {
    width: 90%;
    min-height: 200px;
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--Brand-Color-001);
    border-radius: 5px;
}

.container .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.container button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: var(--Brand-Color-001);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.container button:hover {
    background-color: var(--Brand-Color-002);
}

#encodedText {
    min-height: 300px;
    min-width: 300px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--Brand-Color-003);
    margin-top: 1rem;

}
