body {
    padding: 0;
    margin: 0;
    background-color: #f4f7f6; /* Soft modern background */
    color: #2c3e50;            /* Main text color */
    font-family: Arial, sans-serif;
}
h1 {
    text-align: center;
    color: #2c3e50;
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

#main {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 70px;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0px;
}

#main div {
    color: #2c3e50;            /* Counter label color */
    font-weight: bold;
}

#main div span {
    display: block;
    text-align: center;
    margin: 5px;
    padding: 5px 15px;
    border-top: 1px solid #dcdde1;
    color: #009432;            /* Counter number color (Bright Green for nice highlight) */
    background-color: #ffffff; /* Counter background */
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#txt {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:50px;
}

textarea {
    width: 80%;
    background-color: #ffffff; /* Textarea background */
    color: #2c3e50;            /* Textarea typing text color */
    height: 60vh;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #dcdde1;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

textarea:focus {
    outline: none;
    border-color: #3498db;     /* Focus korle blue border asbe */
}