body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

#input-container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 20px;
}

#text-input {
    width: 100%;
    height: 100px;
    font-size: 18px;
    padding: 10px;
    resize: none;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#fullscreen-display {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    text-align: center;
    padding: 20px;
}

#display-text {
    font-size: 10vw;
    /* Start with 10% of viewport width */
    word-wrap: break-word;
    max-width: 90%;
    max-height: 90%;
    line-height: 1.1;
}

#char-count {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}


/* Use media queries to adjust font size further if needed */
@media (max-width: 600px) {
    #display-text {
        font-size: 15vw;
    }
}