* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    border-radius: 12px;
    color: rgb(234, 234, 234);
    background-color: rgb(230, 230, 230);
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 40rem;
    height: 50vh;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: rgb(18, 18, 18);
    box-shadow: 15px 15px 30px 2px rgba(39, 39, 39, 0.601);

}

.label {
    text-align: left;
}

.output {
    padding: 3px;
    background-color: #234fc7;
    margin: 0 0 10px 0;
}

#text {
    background-color: rgb(48, 47, 47);
    color: white;
    font-size: 1rem;
    margin: 3px 0 30px 0;
}

.word,
.char {
    background-color: #132b6b;
    padding: 4px;
    font-size: 1.3rem;
    font-weight: 600;
}

@media only screen and (max-width:600px) {
    .container {
        width: 24rem;
        height: 25rem;
        padding: 10px 20px;
    }

    #text {
        margin: 3px 0 10px 0px;
    }
}