 
.stats-container {
background-color: rgba(0,0,0,0.2);
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    margin: 10px;
    min-width: 300px;
}

@keyframes vibrate {
    0% { transform: translateX(0); }
    25% { transform: translateY(-1px); }
    50% { transform: translateY(1px); }
    75% { transform: translateX(-1px); }
    100% { transform: translateX(0); }
}

.random-image {
    animation: vibrate 0.01s linear infinite;
}
.overlay-container {
    position: relative; /* Needed for absolute positioning of the overlay */
    width: 200px; /* Set to your desired width */
    height: 100px; /* Set to your desired height */
}

.overlay-container::after {
    content: ''; /* Required for pseudo-elements */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 165, 0, 0.1); /* Orange color with opacity */
    z-index: 1; /* Ensure it's above the content */
    mix-blend-mode: multiply;
}

.img-fade {
    opacity: 0; /* Start with the image fully transparent */
    animation: fadeIn ease-in 1; /* Define the animation */
    animation-fill-mode: forwards; /* Let the last keyframe (opacity: 1) persist after the animation completes */
    animation-duration: 0.5s; /* Animation duration of 1 second */
}

/* Define the keyframes for the fadeIn animation */
@keyframes fadeIn {
    0% { opacity: 0; } /* At the start of the animation, opacity is 0 (fully transparent) */
    100% { opacity: 1; } /* At the end of the animation, opacity is 1 (fully opaque) */
}

.brand-name {
    font-size: 45pt; /* Large size for the brand name */
    font-weight: bold; /* Optional: if you want the brand name to be bold */
    margin-bottom: 0.5em; /* Adjust the space below the brand name */
}
a {
color:white;
}

.body-container {
width: 1000px;
margin-top:100px;
margin:auto;
opacity:0;
}

.body-container.bg-loaded {
opacity:1;
transition: opacity 3s ease-in-out;

}

/*
.body-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1000px;
    height: 100%;
    transform: translateX(-50%); /* Centers the background */
    background: url('images/padlock3.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}
*/

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
font-family: Lato, Arial;
/*background-color: #171717;*/
/*background-size: cover;*/
/*transition: opacity 1s ease-in-out;*/
/*width: 800px;*/
margin:auto;
opacity:1;
/*margin-top:150px;*/
/*overflow: hidden;*/
/*position: relative;*/
/*height:800px;*/
background: #171717 url('/images/bg.jpg') no-repeat center center fixed;

background-size:auto 100%;
}
/*
body.bg-loaded {
    background: url('/images/bg.jpg') no-repeat center center fixed;
opacity:1;
transition: opacity 5s ease-in-out;
background-size:cover;
}
*/

/*body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background: url('images/padlock3.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}
*/

h1, h2, h3, h4, h5, h6, p {
color: white;
margin-right:10px;
margin-left:10px;
}

.text-container {

padding-left:75px;
padding-right:75px;
padding-top:25px;
padding-bottom:25px;
position:relative;
height:50%;
width:50%;
margin:auto;
margin-top:100px;
background-color: rgba(50, 50, 50, 0.6);
border-radius:10px;
transition: opacity 5s ease-in-out;
}


.text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/bg.jpg') no-repeat center center fixed;
    background-size: auto 100%;
    filter: blur(10px); /* Adjust the blur level as needed */
    z-index: -1;
    /*background-color: rgba(250, 250, 250, 1);*/
}

.text-container > * {
    position: relative;
    z-index: 1;
}

.launch-button {
    background-color: #1F1F1F;
    border: 3px solid #004F8B; /* Light blue border */
    color: white;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    font-weight:bold;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    z-index:15;
}

.launch-button:hover {
    background-color: #2E2E2E; /* Slightly lighter gray on hover */
    border-color: #2A79A5; /* Slightly brighter blue on hover */
    transform: scale(1.05);
}

.button-container {
    text-align: center;
}

h2 {
line-height:1.6;
/*text-transform: uppercase;*/
}


/* Responsive Design */
@media screen and (max-width: 768px) {
  

    .body-container, .text-container, section {
        width: 95%; /* Full width for all containers */
        margin-top: 0px; /* Uniform top margin */
	padding:0px;
	margin-left:2%;
	margin-right:0px;
	
    }


    /* Optionally, adjust font sizes for smaller screens */
    h1, h2, h3, h4, h5, h6, p {
       /* font-size: smaller;*/

    }
h2, h3 {
margin-left:56%;
text-align:center;
transform: translateX(-50%);
font-size:17pt;
}

 h2 {
line-height:2.5;
}

.body-container::before {
width:100%;
}



}
