body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Manrope', sans-serif;
    background-color: #111827; /* Dark Slate Blue */
    color: #E5E7EB; /* Light Gray */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.3) 0%, rgba(17, 24, 39, 0) 70%);
}

.content h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    color: #FFFFFF;
}

.content p {
    font-size: 1.25rem;
    font-weight: 300;
    color: #9CA3AF; /* Medium Gray */
    letter-spacing: 0.025em;
}
