/* Basic Reset and Setup */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif; /* Uses the font linked in HTML */
    background-color: #f4f7ff; /* Light background color */
    color: #333; /* Dark text color */
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    min-height: 100vh; /* Full viewport height */
    text-align: center;
}

/* Container for all content */
.container {
    max-width: 600px;
    padding: 30px;
    background-color: #ffffff; /* White content box */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Heading styles */
h1 {
    font-size: 2em;
    font-weight: 300;
    margin-bottom: 0.2em;
}

h2 {
    font-size: 3.5em;
    font-weight: 600;
    color: #007bff; /* Primary color for emphasis */
    margin-top: 0;
    margin-bottom: 0.5em;
    animation: pulse 2s infinite; /* Subtle animation */
}

/* Paragraph styles */
p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact information styles */
.contact-info {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #0056b3;
}

/* Keyframe Animation (for h2) */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.95; }
    100% { transform: scale(1); opacity: 1; }
}