/* Reset default browser styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Roboto', sans-serif; /* Updated font family */
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Background animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #3498db, #8e44ad, #f4b400);
    background-size: 400% 400%;
    z-index: -1; /* Place below all other content */
    animation: gradientShift 15s ease infinite;
}

/* Gradient animation keyframes */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Container and content layout */
.container {
    position: relative;
    max-width: 800px;
    width: 90%;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9); /* Add slight transparency */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.content {
    text-align: center;
}

/* Logo styling */
.logo {
    max-width: 200px;
    margin: 20px auto;
}

/* Heading and subheading styling */
h1 {
    font-family: 'Montserrat', sans-serif; /* Updated font for heading */
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

h2.subheading {
    font-family: 'Roboto', sans-serif; /* Subheading uses paragraph font */
    font-size: 1.25rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 20px;
}

/* Paragraph styling */
p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact link styling */
p.contact a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

p.contact a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 1.25rem;
    }

    h2.subheading {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }
}
