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

body {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.main {
    background-color: rgb(0, 10, 146);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(223, 160, 160, 0.7);
    min-width: 400px;
    width: 650px;
    max-width: 50%;
    padding: 1rem;
    color: black;
    display: flex;
    flex-direction: column;
    gap: 1rem;


}

textarea {
    width: 100%;
    border-radius: 10px;
    padding: 0.5rem;
    font-size: 1rem;
    text-justify: distribute;
}

h1 {
    font-size: 1.5rem;
    text-align: center;
    color: blueviolet;
}

.count {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.2rem;
}

span {
    color: white;
    padding: 10px;
    

}

h5 {
    color: blueviolet;

}

button {
    background-color: red;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    padding: 10px;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: green;
}