body {
    background-color: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
    font-size: large;
}

div#lccontainer {
    max-width: 700px;
}

textarea#lctextarea {
    width: 500px;
    height: 300px;
    font-family: 'Roboto', sans-serif;
    font-size: large;
    padding: 10px;
    border: 1px solid lightgray;
    border-radius: .5rem;
    outline: none;
    resize: none;
    align-items: center;
}

div#lccountercontainer {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: auto;
    background-color: rgb(240, 236, 236);
    border-radius: .5rem;
    padding-top: 15px;
}

div.lcbuttons,
div.lcoutput {
    width: 500px;
    align-items: start;
}

span.lcstrong {
    display: contents;
    font-weight: bold;
}

span.lcitalic {
    font-style: italic;
}

ul.lcwordletterlist li {
    padding-bottom: 10px;
}

h1.lch1,
h2.lch2 {
    text-align: center !important;
    margin-top: 50px;
}

h2.lch2w {
    color: #fff;
    text-align: center;
    margin-top: 50px;
}

div#lcsharing {
    /*background-color: rgb(240, 236, 236);*/
    background-color: #262626;
    color: white;
    padding: 25px;
    padding-bottom: 30px;
}

.lcsocial-sharing {
    text-align: center;
}

.lcsocial-sharing a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    color: #333;
    /* Change to your desired color */
    font-size: 18px;
    /* Adjust as needed */
}

.lcsocial-sharing i {
    margin-right: 5px;
    font-size: 20px;
    color: #fff;
    font-size: 2em;
}

.lcsocial-sharing i:hover {
    color: orange;
}

@media (max-width: 700px) {
    textarea#lctextarea {
        width: 80%;
    }

    div#lccountercontainer {
        width: 98%;
    }

    div.lcbuttons,
    div.lcoutput {
        width: 100%;
        margin-left: 30px;
    }
}

.centre {
    text-align: center;
}