* {
  font-family: Inter, sans-serif;
}
.body{
  color: rgb(1, 10, 11);
}

.body_block{
  position: fixed;
  inset: 0% 0% 0% auto;
  display: block;
  width: 25%;
  height: 100%;
  grid-auto-columns: 1fr;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  background-color: rgb(247, 223, 211);
  background-clip: border-box;
}

.hero{
  margin-top: 144px;
  position: relative;
}

.hero .btn-primary {
  margin-top: 20px;
  background-color: #03A89E;
  border: none;
  font-size: 18px;
}

.hero .btn-primary:hover{
  background-color: #028981;
}

.hero .btn-primary:first-child:active{
  background-color: #015F59;
}

.fa{
  padding-right: 8px;
}

.tag{
  font-family: Roboto, sans-serif;
  margin-bottom: -20px;
/*  margin-left: -14px;*/
  padding-left: 2px;
  color: #03A89E;
  font-weight: 600;
  font-size: 18px;
}

.name{
  font-family: Candal, Bitter, sans-serif;
  font-size: 112px;
  text-align: left;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 20px;
/*  margin-left: -14px;*/
}
 
li {
  font-size: 18px;
}

.hero p {
  width: 70%;
  margin-top: 20px;
  font-size: 20px;
  text-decoration: none;
}

a {
  color: rgb(156, 109, 6) !important;
  text-decoration: none  !important;
}

a:hover{
  color: rgb(201, 141, 8) !important;
}

@media (max-width: 768px) {
  .body_block{
/*    background-color: green;*/
    width: 10%;
  }
  .hero p{
    width: 100%;
  }
  .hero .name{
    font-size: 90px;
  }
}

@media (max-width: 576px) {
  .body_block{
/*    background-color: blue;*/
    width: 4%;
  }
  .hero{
    margin-top: 76px;
  }
  .hero p{
    font-size: 16px;
  }
  .hero .name{
    font-size: 56px;
  }
  .hero .btn-primary {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .body_block{
/*    background-color: red;*/
    width: 4%;
  }
  .hero{
    margin-top: 40px;
  }
  .hero p{
    font-size: 16px;
  }
  .hero .name{
    font-size: 42px;
  }
  .hero .btn-primary {
    font-size: 16px;
  }

}