body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  
  max-width: 1000px;
  margin: auto;
  background-color:rgba(57, 53, 53, 0.8) ;
  height: 100vh;
  display: flex;
  align-items: center;

}
.card-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  text-align: justify;
  align-items: center;
}
.text-container {
  margin-top: 20px;
  background-color:rgb(241, 242, 231) ;
  position: relative;
  border: 1px solid  rgb(24, 24, 23);
  padding: 0 30px;
  border-radius: 20px;
  box-shadow: 5px 5px 20px rgb(5, 5, 5);
  width: 35%;
  min-height: 350px;
  
}
.gift{
    color: rgb(210, 38, 8);  
}
.tree{
    color: rgba(15, 199, 15, 0.776);
    
}

.text {
  font-size: 20px;
  color: rgba(57, 53, 53, 0.8);
}
.more-text {
  display: none;
}
.read-more-btn {
  font-weight: 600;
  color: rgb(19, 17, 23);
  padding: 5px 5px;
  border-radius: 10px;
  border: 1px solid rgb(94, 93, 93);
  box-shadow: 1px 0px 10px;
  position: absolute;
  right: 2%;
  bottom: 2%;
  cursor: pointer;
  background-color: rgb(201, 188, 234);
}
.text.show-more .more-text {
 
  display: inline;
  height: 600px;
}
.text.show-more .dots {
  display: none;
}
.coffee{
    color: rgba(76, 8, 201, 0.657);
}
h2{
color: rgb(12, 12, 11);

}

.text::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border: 20px solid rgba(0, 0, 0, 0);
  border-right: 20px solid rgb(201, 188, 234);
  border-top: 20px solid rgb(201, 188, 234);
  border-radius: 0 20px;

}
.text.text.show-more::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border: 20px solid rgba(0, 0, 0, 0);
   border-right: 20px solid rgb(145, 233, 204);
  border-top: 20px solid rgb(145, 233, 204);
  border-radius: 0 20px;
}
