body {
    font-family: "Montserrat Alternatives" sans-serif;
    font-size: 16px;
    color:#ccc;
    overflow: hidden;
}
body::-webkit-scrollbar {
    display:none;
}
html,body {
    margin:0;
    height:100%;
    height:100vh;
    width:100%;
    width:100vw;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: black;
    background-image: url(./stars.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.menu ul {
    float: right;
    top: 20px;
    right: 40px;
    font-size: 20px;
    color: red;
}
.splash {
    padding: 20px;
    padding-top:100px;
    text-align: center;
}
splash > * {
    width:100%;
}
.title {
    font-weight: 600;
    font-size: 30px;
    color:#fff;
}
.post-grid {
    margin:auto;
    background-color: rgba(5, 5, 5,0.8);
    padding:20px;
    border-radius: 5px;
    max-width: 700px;
    display: inline-block;
    vertical-align: top;
}
.update-grid {
    margin:auto;
    background-color: rgba(5, 5, 5,0.8);
    padding:20px 0px;
    border-radius: 5px;
    width:90%;
    max-width: 400px;
    display: inline-block;
    vertical-align: top;
}
.grid-title {
    font-size:23px;
    font-weight:700;

}
.grid-item {
    border-radius: 10px;
    width:300px;
    height:auto;
    overflow: hidden;
    display: inline-block;
    margin:5px;
    vertical-align: top;
    border:1px solid rgb(115, 85, 245);
    box-shadow: inset 0 -2px 10px rgba(115, 85, 245,0.3);
}
.grid-image {
    width:100%;
    height:200px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-size 0.3s ease;
    -moz-transition: background-size 0.3s ease;
    z-index: 10;
    position: relative;
    display:none;
}
.grid-image-m {
    width: 99%;
    height: auto;
    margin: auto;
}
.grid-item:hover .grid-image {
    background-size: 108%;
}
.grid-item-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top:none;
    transform:translateY(-5px)
}

.grid-item-content p {
    margin:0;
    padding-top:7px;
    font-weight:700;
    font-size:19px;
}
.devlog-item {
    margin-top: 5px;
    background: #111;
    padding: 9px;
    display: flex;
    border-radius: 12px;
}
.devlog-item.complete {
    background: #130f24;
    border: 2px solid #8367ff;
}

.devlog-item .icon {
    font-size: 32px;
    vertical-align: middle;
    color: #282828;
}
.devlog-item.complete .icon {
    color: #8367ff;
}
.devlog-item p {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 22px;
    flex: 1;
    color: #888;
    font-weight: 600;
}
.devlog-item.complete p {
    font-weight: 700;
    color: #b6a6ff;
}
.faq {
    margin:40px;
    vertical-align: middle;
    text-align: center;
    color: rgb(255, 255, 255);
}
.faq p {
    font-size: 30px;
    font-weight: 600;
}
.faq-item {
    margin:10px;
    vertical-align: middle;
    padding: 0 5px;
    cursor: pointer;
}
.faq-item p{
    font-size: 22px;
}
.panel {
    margin: auto;
    width: 600px;
    display: center;
}
.panel p {
    font-size: 18px;
    font-weight: 450;
    flex-direction: column;
    flex-wrap: nowrap;
    text-align: left;
}
.footer {
    left: 0;
    background-color:transparent;
    bottom: 0;
    width: 100%;
    text-align: center;
}




.logo-anim {
    position: relative;
    height:200px;
}

.logo {
    max-height:60px;
    width:auto;
    display:block;
    margin:15px auto;
    position: absolute;
    top:30px;
    left:50%;
    transform: translateX(-50%);
    background-size: cover;
    background-repeat: no-repeat;
   
}
.logo-1 {
    background-image: url(./bv_dark_long_1.png);
    width:175px;
    height:50px;
    background-position: 0% 50%;
    animation: logo-anim-1 1.6s ease-out forwards;
}
.logo-2 {
    background-image: url(./bv_dark_long_2.png);
    width:100px;
    height:50px;
    background-position: 50% 50%;
    animation: logo-anim-2 1.4s cubic-bezier(0.64, 0.57, 0.67, 1.53) forwards;
    margin-left: -50px;
    transform:none;
}
.logo-3 {
    background-image: url(./bv_dark_long_3.png);
    width:175px;
    height:50px;
    background-position: 100% 50%;
    transform: translateX(25px);
    animation: logo-anim-3 1.6s ease-out forwards;
}

.fade {
    opacity:0;
    transform:translateY(20px);
    animation: fade-in 0.5s ease-out forwards;
    animation-delay:1s
}

@keyframes body {
    from{transform: translateY(0)}
    to{transform: translateY(-300px)}
}

@keyframes fade-in {
    0% {
        opacity:0;
        transform:translateY(20px);
    }
    100% {
        opacity:1;
        transform:translateY(0px);
    }
}

@keyframes logo-anim-1 {
    0%,50% {
        width:0;
        transform: translateX(-20px);
    }
    98% {
        width:175px;
    }
    100% {
        transform: translateX(-200px);
    }
}
@keyframes logo-anim-2 {
    0% {
        transform: scale(2)
    }
    35%,40% {
        transform: scale(2.2)
    }
    70% {
        transform: scale(0.95)
    }
    70% {
        transform: scale(1)
    }
}
@keyframes logo-anim-3 {
    0%,50% {
        width:0;
        transform: translateX(35px);
    }
    100% {
        width:175px;
    }
}
.socials-cont {
    height:70px;
}
.social-link {
    display: inline-block;
    width: 48px;
    height: 48px;
    opacity: 0.6;
    font-style: normal;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
    opacity: 1;
    transform: scale(1.1);
}
.social-link > i {
    font-style: normal;
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    margin-top: 20px;
    display: block;
}



.meter {
    box-sizing: content-box;
    height: 20px;
    max-width: 400px;
    margin:auto;
    position: relative;
    background: rgb(55, 43, 111);
    border-radius: 25px;
    width:80%;
  }
  .meter > span {
    transition: width 0.7s ease-in-out;
    display: block;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: rgb(115, 85, 245);
    background-image: linear-gradient(
      center bottom,
      rgb(115, 85, 245) 37%,
      rgb(70, 50, 158) 69%
    );
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
      inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
  }
  .meter > span:after,
  .animate > span > span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent
    );
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
  }
  
  .animate > span:after {
    display: none;
  }
  
  @keyframes move {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 50px 50px;
    }
  }
  

/* Mobile */
@media only screen and (max-width: 600px) {
    .grid-image {
        display:none;
    }
    .grid-image-m {
        display:block;
    }
    .grid-item {
        width:100% !important;
    }
    .splash {
        padding-top:20px;
    }
    .faq {
        margin: 10px;
    }
    .faq p {
        font-size: 24px;
    }
    .faq-item p {
        font-size: 18px;
    }
    .panel {
        width: 340px;
    }
    .panel p {
        font-size: 15px;
    }
}
/* Desktop */
@media only screen and (min-width: 601px) {
    .grid-image-m {
        display:none;
    }
    .grid-image {
        display:block;
    }
}