
.noto-sans-telugu-<uniquifier> {
    font-family: "Noto Sans Telugu", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }


/* Reset some default styles for better compatibility */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: sans-serif;
}

/* Container for the video and overlay */
.video-background-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* Fullscreen video styling */
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: no-repeat;
    background-size: cover;
}

/* Fullscreen overlay styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Overlay content styling */
.content {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow */
}

h1 {
    font-size: 3em;
    margin: 0 0 20px 0;
}

p {
    font-size: 1.5em;
    margin: 0;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

