/* General Reset */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Oswald', serif;
    background: radial-gradient(circle, #0d1b2a, #1b263b, #415a77);
    color: #ffffff;
    overflow: hidden;
    /* Prevent scrollbars */
    height: 100vh;
    width: 100%;
}

#globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    /* Adjust size as needed */
    height: 80%;
    /* Adjust size as needed */
    z-index: 1;
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    /* Adjust as needed to position it further from the left edge */
    transform: translateY(-50%);
    /* Center vertically */
    text-align: left;
    /* Align text to the left */
    color: white;
    /* Ensure visibility */
    z-index: 2;
    /* Ensure it stays above the globe */
    width: auto;
    /* Adjust width if needed */
}


.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #f1f1f1;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ddd;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.7);
}

/* Start Button */
.start-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #ffffff;
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}

/* Pulsing Effect */
.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    }
}

/* Particle Background */
#particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(30, 30, 60, 0.6), rgba(10, 10, 20, 0.9));
}

/* Floating Animation for Text */
.animate-text {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}