body {
    background-color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: sans-serif; /* Basic fallback font */
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px; /* Add some padding */
}

.hero-text {
    width: 80%; /* Adjust width as needed */
    max-width: 800px; /* Set a max-width */
    height: auto;
    margin-bottom: 140px;
}

.sub-text {
    width: 40%; /* Adjust width as needed */
    max-width: 400px; /* Set a max-width */
    height: auto;
    max-height: 40px; /* Added max-height */
    position: fixed; /* Position relative to viewport */
    bottom: 100px;  /* 100px from the bottom */
    left: 50%;      /* Center horizontally */
    transform: translateX(-50%); /* Adjust horizontal centering */
} 