@font-face {
  font-family: "florania";
  src: url(assets/fonts/florania.otf);
}
.video {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  .v-text {
    width: 50%;
    h2 {
      font-size: 6.5rem;
      font-weight: 900;
      font-family: "florania";
      color: #f27420;
    }
  }
  video {
    width: auto;
    height: 70vh;
    border-right: 10px solid #f27420;
    border-bottom: 10px solid #f27420;
  }
}
#left-t {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
  text-align: left;
  width: 100%;

  span {
    text-align: left;
  }
  h2 {
    text-align: left;
  }
}
.underline {
  text-decoration: underline;
}
#text-color-n {
  color: #f27420;
}
@media (max-width: 768px) {
    .video{
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: fit-content;
        .v-text{
            width:90%;
        }
        video{
            width: 100%;
            height: auto;
            margin-bottom:50px;
        }
    }
  h1 {
    font-size: 2rem;
    width: 100%;
    overflow-wrap: break-word;
  }
  #text-color-n {
    font-size: 2rem;
  }
}
