html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    /* Black background for a professional look */
    color: #fff;
    /* White text for better contrast */
    font-family: 'Arial', sans-serif;
    user-select: none;
}

#particle-canvas {
    width: 100%;
    height: 100%;
    position: fixed !important;
}

/* Center content in the middle while keeping text left-aligned */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align content to the left */
    justify-content: center;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    /* Move content to the center */
    transform: translateX(-50%) translateY(-50%) !important;
    /* Center horizontally & vertically */
    text-align: left !important;
    z-index: 100 !important;
    width: 500px;
    /* Set a fixed width to prevent stretching */
}

/* Adjust the logo size */
.logo-container img {
    max-width: 200px !important;
    max-height: 120px !important;
    width: auto !important;
    height: auto !important;
    margin-bottom: 20px;
    /* Space between logo and text */
}

/* Brand description styling */
.brand-description {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    /* Align text to the left */
    opacity: 0.9;
    margin-top: 10px;
    /* Adjust spacing */
}

.title h1 {
    margin: 0px 0px !important;
    font-size: 75px;
}