* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  video {
    min-width: 100%;
    min-height: 100vh;
    object-fit: cover;
  }
  
  .notes {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .notes h3 {
    font-size: 50px;
    color: white;
  }
  