*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
}
video{
    /* border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    background-color: #fff;
}   
p {
  font-size: 14px;
  color: #005c8d6d;
  text-align: center;
  font-family: Arial, sans-serif;
  opacity: 0;
  transition: opacity 0.5s;
}

p.visible {
  opacity: 1;
}
