@layer reset {

  *, *::before, *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
    padding: 0;
  }

  html {
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    interpolate-size: allow-keywords;
    scrollbar-gutter: stable;
  }

  body {
    min-height: 100vh;
    min-height: 100svh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img, picture, video, canvas, svg, iframe {
    display: block;
    max-width: 100%;
    height: auto;
  }

  svg[width][height] {
    max-width: revert;
  }

  p, li, dd {
    text-wrap: pretty;
    overflow-wrap: break-word;
  }

  h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    line-height: 1.1;
  }

  input, button, textarea, select {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
  }

  button, select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  textarea:not([rows]) {
    min-height: 10em;
  }

  :target {
    scroll-margin-block: 3rem;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
}

@font-face {
    font-family: "uavOsdSansMono";
    src: url("assets/UAV-OSD-Sans-Mono.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

#main {
    background-color: #000000;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    @media (max-width: 599px) {

    }
    .background-inner-clip {
        width: 100%;
        height: 100vh;
        z-index: 0;
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
       }
    }
    .main-center-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 16px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 1;
        height:auto;
        width: 100%;
        padding: 0 80px;
        @media (max-width: 599px) {
            align-items: flex-start;
            gap: 12px;
            padding: 0 40px;
        }
        img {
            width: 50px;
            height: auto;
            margin-bottom: 8px;
            @media (max-width: 599px) {
                width: 50px;
            }
        }
        span {
            font-family: "uavOsdSansMono";
            font-size: 12px;
            color: #F7F3E3;
            letter-spacing: -1px;
            white-space: nowrap;
            line-height: 150%;
            @media (max-width: 599px) {
                font-size: 12px;
            }
        }
        a {
            font-family: "uavOsdSansMono";
            font-size: 12px;
            color: #F7F3E3;
            letter-spacing: -1px;
            text-decoration: none;
            @media (max-width: 599px) {
                font-size: 12px;
            }
            @media (hover: hover) {
                &:hover {
                    color: #9A0000;
                }
            }
            &:active {
                color: #9A0000;
            }
        }
    }
    .line-coming-soon {
        font-family: "uavOsdSansMono";
        font-size: 12px;
        color: #F7F3E3;
        letter-spacing: -1px;
        position: absolute;
        bottom: 80px;
        left: 80px;
        z-index: 1;
        white-space: nowrap;
        @media (max-width: 599px) {
            font-size: 12px;
            bottom: 40px;
            left: 40px;
        }
    }
}
