body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  
  overflow: hidden;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video-progress {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
}

img.logo {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  width: 7%;
}

.twod{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999;
  color: #fff;
}
.two a{
  color: #fff;
  text-decoration: none;
}
.two {
    background-color: rgb(70 48 42);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}