body {
    margin: 0;
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    background: url("https://images.unsplash.com/photo-1494500764479-0c8f2919a3d8?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    font-family: montserrat;
    color: rgb(59, 3, 86);
    text-align: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.15);
    width: 400px;
    padding: 20px;
    margin: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 8px black;
}

.textarea {
    resize: none;
    width: 100%;
    height:100px;
    font-size: 18px;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;
    box-sizing: border-box;
}

.counter-container {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.counter-container p {
    font-size: 18px;
    color: white;
}

.total-counter {
    color: rgb(248, 192, 254);
}

.remaining-counter {
    color: rgb(0, 213, 255);
}