* {
    font-weight: 400;
}
.share-tech-mono-regular {
    font-family: "Share Tech Mono", monospace;
    font-weight: 400;
    font-style: normal;
  }

.hero{
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(39, 0, 214, 0.8)),(rgba(187, 3, 33, 0.8));
    position: relative;
    padding: 0;
    align-items: center;
    justify-content: center;
}
.content{
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content h1{
    color: white;
    font-weight: bold;
    transition: 1s;
    margin: 0;
    font-weight: 400;
    max-width: 650px;
    border: 15px solid;
    border-image-source: url(/img/plus.png);
}
.content h1:hover{
    -webkit-text-stroke: 3px #fff;
    color: transparent;
}
.back-video{
    position: fixed;
    inset: 0;
    z-index: -1;
    border: none;
}

/* .button{
    padding: 10px;
    font-size: 1.2em;
    border: 15px solid transparent;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    font-weight: 400;
    transition: 1s;
    cursor: pointer;
    margin: 0;
}
.button:hover{
    color: gray;
    border: 15px solid #fff;
    border-image-source: url(/img/plus.png);
} */
.text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 10px 25px 10px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
.para{
  font-size: 18px;
  text-align: left;
  margin: 0;
  font-weight: 400;
}
h2{
  font-weight: 400;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: 0;
  color: #fff;
  font-size: 2.5em;
}

/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 8px; /* Adjust the width as needed */
    height: 8px; /* Adjust the height as needed */
}

::-webkit-scrollbar-track {
    background: transparent; /* You can change this to any color or keep it transparent */
}

::-webkit-scrollbar-thumb {
    background-color: white; /* Color of the scrollbar thumb */
    border-radius: 0px; /* Round edges */
    border: 2px solid transparent; /* Space around thumb */
}

/* For Firefox */
html {
    scrollbar-width: thin; /* Makes the scrollbar thinner */
    scrollbar-color: white transparent; /* Scrollbar thumb color and track color */
}

/* Optional: For more customization in Firefox */
body {
    scrollbar-width: thin;
    scrollbar-color: white transparent;
}


@media (min-aspect-ratio: 16/9){
    .back-video{
        width: 100%;
        height: auto;
    }
    .content h1 {
        font-size: 6em;
    }
}
@media (max-aspect-ratio: 16/9){
    .back-video{
        width: auto;
        height: 100%;
    }
    .content h1 {
        font-size: 4em;
    }
}