@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


p {
     font-family: 'Montserrat', sans-serif;
     font-size: 23px;
     line-height: 35px;
     color: #ffffff;
     font-weight: 400;
     margin-bottom: 2%;
}

.read-more-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  margin-bottom: 2%;
  background-color: #601B0A;
  border: none;
  border-radius: 20px;
  color: white;
  padding: 5px 22px;
  box-shadow: 0px 0px 10px 0px #601B0A;
  cursor: pointer;
  margin-top: 20px;
}

.read-more-btn:hover {
  box-shadow: none;
  background-color: #541509;
  color: #fff;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 6.05s;
}

 
.hideText {
  display: none;
}

.showText {
  display: block;
}