/* video.bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
} */

.bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%); /* Center the video correctly */
    z-index: -1; /* Keep video behind the content */
    object-fit: cover; /* Ensure it covers the entire viewport */
    content: '';
    background: rgba(0, 0, 0, 0.9); /* Adjust the alpha value to make it darker or lighter */
    pointer-events: none; /* Ensures click events pass through to the video */

  }

  
  .content {
    position: relative;
    z-index: 1;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Light background for readability */
    height: 2000px; /* Adjust height as needed to ensure scrolling */
  }
  
  /* .cg-logo1 {
    position: relative;
    height: 20%;
    width: 20%;
  } */

html, body {
    height: 100%;
    margin: 0; /* Ensures no default margin is applied */
    padding: 0; /* Ensures no default padding is applied */
}

.container-fluid {
    height: 100%;
}

.row {
    height: 100%;
}

/* Optional: Further styling to adjust padding or margins within the content divs */
.col-lg-6 div {
    padding: 20px; /* Adds padding around the content for better spacing */
}

.razem {
    padding: 100;
}

h1.razem {
  font-family: "Licorice", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 5em;

}

.nav-link {
  color: gray;
}

.nav-link:hover {
  color: red;
}

.justify {
  text-align: justify
}