html{
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    background-image: url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b3077965-2fc6-487a-ab77-8e3e6ad2de74/d8lb5c6-bcc12231-656f-4a30-9f3a-4cc004706978.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcL2IzMDc3OTY1LTJmYzYtNDg3YS1hYjc3LThlM2U2YWQyZGU3NFwvZDhsYjVjNi1iY2MxMjIzMS02NTZmLTRhMzAtOWYzYS00Y2MwMDQ3MDY5NzgucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.zrdqzn7OD4Fe-nucrHD4NaOkZR00IVpkoT_kBj6o1So");
    background-size: cover;
    background-position: fixed;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    margin: 0;
    
}

@font-face {
    font-family: 'Audiowide';
    src: url('/Fonts/Audiowide-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.audiowide-font {
    font-family: 'Audiowide', sans-serif;
}

@font-face {
    font-family: 'Orbitron';
    src: url('/Fonts/Orbitron-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.orbitron-font {
    font-family: 'Orbitron', sans-serif;
}



::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.slider {
    height: auto;
    margin: auto;
    overflow: hidden;
    align-items: center;
    position: relative;
    top: 5vh;
    width: 40%;
}
.slider:before {
    position: absolute;
    z-index: 1;
    left: 0;
    content: "";
    width: 23.958%;
    height: 110px;
}
.slider:after {
    position: absolute;
    right: 0;
    content: "";
    width: 23.958%;
    height: 110px;
}
.slider .slide-track {
    display: flex;
    animation: scroll 15s linear infinite;
    -webkit-animation: scroll 23s linear infinite;
    width: calc(240px * 10);
}
.slider .slide {
    cursor: pointer;
    width: 180px;
    height: auto;
    padding: 10px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider .slide img {
    height: auto;
    width: 160px;
    filter: brightness(0) saturate(100%);
    opacity: 0.25;
}
@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-240px * 5));
        transform: translateX(calc(-240px * 5));
    }
}

.nav-hover {
    transition: 0.4s;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px;
    position: relative;
  }
  .nav-hover::before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    transition: width 0.4s;
  }
  .nav-hover:hover::before {
    width: 100%;
  }

  .left-vertical-card {
    height: 92.7vh;
    width: 15vw;
    z-index: 100;
  }

  .right-vertical-card {
    height: 92.7vh;
    width: 15vw;
    z-index: 100;
  }



