  .intro {
    position: relative;
    font-family: Arial;
    width: 100%;
    height: 300px;
  }

  .intro-block {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%); 
    background-color: var(--bg-color);
    color: var(--text-color);
    padding-left: 20px;
    padding-right: 20px;
    height: 101%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    box-sizing: border-box;
  }

  .intro_img {
    width: 100%;
    height: 300px; 
    object-fit: cover; 
    display: block;
  }

  #intro-title{
    font-size:24px;
  }