.VostellungsVideo{
    padding-top: 60px;
    padding-bottom: 100px;
}

.title{
    height: 100px;
    padding-left: 11px;
}

.section-title {
    position: relative;
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: #0e74ff;
    font-family: Inter, sans-serif;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 170px;
    height: 5px;
    background-color: #0e74ff;
    border-radius: 3px;
  }

  .video-player{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .video-container{
    width: 70%;
    height: 500px;
    background-color: black;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  

  @media (max-width: 500px){
    .section-title{
        font-size: 30px;
    }

    .section-title::after{
        height: 3px;
    }

    .video-container{
        height: auto;
        width: 90%;
    }
  }
