* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
    box-sizing: border-box;
    font-size: 16px;
    max-width: 100%;
    color: black;
      -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
    
  }
  a {
    text-decoration: none;
    cursor: pointer;
  }
  button {
    cursor: pointer;
  }
  
  html {
    background-color: white;
    width: 100vw;
    height: 100vh;
    touch-action: manipulation;
  }
  
  body {
    width: 100%;
    overflow-x: hidden;
  }

  #head_container {
    width: 100%;
    display: flex;
    padding-left: 2vw;
    position:absolute;
    z-index: 20;
    flex-direction: column;
    justify-items: start;
    align-items: start;
  }

  #head_container h1 {
    font-size: 2rem;
    color: #ef8633;
    text-align: center;
    text-shadow: 0px 1px 1px black;
  }

  #head_container h2 {
    margin-top: -5px;
    color:rgb(13, 172, 235);
    font-size: 1rem;
    text-align: center;
    text-shadow: 0px 1px 1px black;
  }

 
  #video_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  #video_container video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  @media (max-width: 768px) {

    #head_container {
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      padding: 0 2vw;
    }

    #head_container h1 {
      font-size: 1.5rem;
    }
    #head_container h2 {
      font-size: 0.8rem;
      margin-top: 0;
    }
 
  }

  