body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: red; /* Deep dark background */
    color: #ffffff;
    text-align: center;
}

.top-bar {
    padding: 20px;
    text-align: right;
    color: #cc4125; /* Accent orange/red color */
    font-weight: bold;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.logo img {
    width: 120px;
    margin-bottom: 40px;
    height: 125px;
    
}

.welcome-text {
    letter-spacing: 3px;
    font-size: 1.9rem;
    margin-bottom: 60px;
    margin-top: 140px;
    opacity: 1;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin: 0 0 20px 0;
    max-width: 800px;
    font-family: "Georgia, serif";
    padding: 20px;
}

.subtext {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 40px;
}

.cta-button {
    background-color: red; /* Button background */
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background 0.3s ease;
    margin-bottom: 60px;
}

.cta-button:hover {
    background-color: red;
}