html {
    background-color: black;
    color: white;
    font-family: Arial;
    background: #000000;
    background: radial-gradient(circle,rgba(0, 0, 0, 1) 35%, rgb(8, 0, 67) 50%, rgb(0, 26, 52) 58%, rgba(0, 0, 0, 1) 65%);
    background-size: 500%;
    background-position: -50%, 70%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}


body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    flex-direction: column;
}

.titleCont {
    margin-top: 15vh;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 5vh;
    border-radius: 10px;
}

.titleCont h1 {
    margin: 0;
    font-size: 3.5vh;
}

.titleCont h2 {
    font-size: 2vh;
    margin: 0;
}

.titleCont h3 {
    font-size: 2.5vh;
    margin: 0;
}

.titleCont img {
    min-width: 400px;
    max-width: 800px;
    max-width: 70vw;
}

.socialCont {
    min-width: 500px;
    width: 90vw;
    max-width: 1250px;
    margin: 5vh;
}

.bg-video {
    z-index: -2;
    position: fixed;
    left: -50vw;
    top: -100vh;
    background-size: cover;
    background: no-repeat center;
    user-select: none;
    pointer-events: none;
    height: 300vh;
    width: 200vw;
    overflow: hidden;

  /*custom styles, for example grayscale appearance*/
  filter: grayscale(0.8) brightness(.8) blur(3px);

  /*additional tweaks for positioning, read more in the link above*/
}