body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: black;
    color: white;
}

.splash {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.overlay {
    position: relative;
    z-index: 2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.overlay:hover {
    transform: scale(1.05);
}

.investor-button {
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    margin: 10px 0;
}

.investor-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.contact-info {
    margin: 20px 0;
}

.contact-info input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 200px;
}

.rss-feed {
    margin-top: 20px;
}

footer {
    text-align: center;
    color: lightgray;
    padding: 20px;
}
	