.container {
    padding: 1rem;
    font-family: "Roboto", sans-serif;
    text-align: center;
    
}

.heading {
    font-size: 2.5rem;
}

.words {
    display: block;
    height: 200px;
    width: 100%;
    border: 2px solid black;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    margin: 0 auto;
    resize: none;
    max-width: 50rem;
    line-height: 2;
}

.count-btn {
    padding: 1rem 3rem;
    margin: 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0.5rem;
}

.count-btn {
    border-color: #3498db;
  color: #fff;
  box-shadow: 0 0 40px 40px #3498db inset, 0 0 0 0 #3498db;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 200ms ease-in-out;
  }

.count-btn:hover {
    box-shadow: 0 0 8px 0 #3498db inset, 0 0 2px 4px #3498db;
    color: black;
}


.word-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
}

.no-of-words {
    font-size: 3rem;
    font-weight: bold;
}

