JSFiddle - React, Tailwind, and code Playground

HTML

<div class="box-template-info">
<h3 class="box-template-info-company">Công Ty Cổ Phần Công Nghệ Ánh Linh</h3>
   <div class="box-template-info-round">
      <h4 class="box-template-info-slogan">Thiết kế website chuyên nghiệp và quảng cáo.</h4>
      <ul>
         <li>Địa chỉ: Đồng Nai, Việt Nam</li>
         <li>Điện thoại: 0886 091 001</li>
         <li>Email: [email protected]</li>
         <li>Website: https://anhlinh.net</li>
      </ul>
   </div>
</div>

CSS

.box-template-info .box-template-info-company {
    margin: 0 0 5px!important;
    font-size: 1.6em;
    text-transform: uppercase
}
.box-template-info-round {
    border: 1px dashed;
    font-size: 15px;
    background-image: linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);
    padding: 15px;
    border-radius: 4px;
}
.box-template-info-slogan{
  color: #e20619;
    margin: 0 0 5px;
    font-size: 1.4em;
    font-weight: 500;
}
.box-template-info ul{
    font-weight: 700;
    color: #e20619;
}