body {
    margin: 0;
    padding: 0;
    font-family: 'Syne', sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.stealth-mode {
    font-family: 'Source Code Pro', monospace;
    font-size: 12px;
    color: #fff;
    background-color: #333;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 30px;
}

.title {
    font-size: 51px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.description {
    font-family: 'Source Code Pro', monospace;
    font-size: 16px;
    font-weight: 100;
    max-width: 630px;
    margin: 20px auto;
    line-height: 1.9;
}

.get-in-touch-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333; /* Gray background */
    color: white; /* White text */
    text-decoration: none;
    font-size: 12px;
    font-family: 'Source Code Pro', monospace; /* Source Code Pro font */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.get-in-touch-button:hover {
    background-color: #aaa; /* Darker gray on hover */
}