﻿.logo_only_name {
    font-family: 'LogoFont', sans-serif;
    font-size: 20px;
    color: #ffffff;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: Arial;
}

body {
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.heading{
    color:#fff;
    font-size: 40px;
    font-weight: lighter;
    text-align: center;
    letter-spacing: 6px;
    word-spacing: 6px;
    margin-bottom: 25px;
}

.description {
    color: #000;
    text-align: center;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: 'Lucida Sans';
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem;
    border-radius: 10px;
}
.timer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.sub_timer {
    flex: 1 1 120px;
    max-width: 150px;
    background: rgba(255,255,255,0.19);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
}

.digit{
    color: #fff;
    font-weight: lighter;
    font-size: 70px;
    text-align: center;
    padding: 2.5rem 0;
}

.digit_name{
    color: #000;
    background: #fff;
    text-align: center;
    padding: 0.4rem 0;
    font-size: 20px;
    margin-bottom: 0px;
}

.coming_soon_container {
    text-align: center;
    padding: 20px;
}

.coming_soon_image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .digit {
        font-size: 50px;
        padding: 1.5rem 0;
    }

    .digit_name {
        font-size: 16px;
    }

    .heading {
        font-size: 28px;
    }
}

@font-face {
    font-family: 'LogoFont';
    src: url('/fonts/Rajdhani-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/*JVH: Override Bootstrap CSS*/

.btn.btn-outline-primary {
    color: #45f3ff !important;
    border-color: #45f3ff !important;
}

    .btn.btn-outline-primary:hover {
        background-color: #45f3ff !important;
        color: #fff !important;
    }

.btn.btn-outline-success {
    color: #ff2770 !important;
    border-color: #ff2770 !important;
}

    .btn.btn-outline-success:hover {
        background-color: #ff2770 !important;
        color: #fff !important;
    }

.video-box {
    position: relative;
    width: 100%; /* Takes up 90% of viewport width */
    max-width: 600px; /* Limit for large screens */
    aspect-ratio: 16 / 9; /* Keeps video proportionate */
    border-radius: 16px;
    overflow:visible;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto; /* Centers horizontally */
    background: #111;
    box-shadow: 0 0 20px rgba(69, 243, 255, 0.3);
}

/* Make video adapt perfectly */
.challenge-video {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.blue {
    color: #45f3ff;
}

.red {
    color: #ff2770;
}