/* Reset basic margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #171e23; /* Dark Background */
    color: #5b7f95; /* Standard Text Color */
    font-family: 'Lora', serif; /* Default font for body text */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container helps keep content grouped */
.container {
    padding: 20px;
    animation: fadeIn 2s ease-in; /* A subtle fade-in effect */
}

h1 {
    font-family: 'Montserrat', sans-serif;
    color: #a3b5c0; /* Header Color */
    font-size: 4rem; /* Large size */
    font-weight: 900; /* Bold weight */
    text-transform: uppercase; /* Forces CAPS */
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

p {
    font-size: 1.5rem;
    font-style: italic; /* Lora looks great in italic */
}

/* Hyperlink Styling */
a {
    color: #955b7f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a3b5c0; /* Hover to header color */
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    p {
        font-size: 1.2rem;
    }
}

/* Simple Fade In Animation */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}