/* Ensure the body and html take the full height of the viewport */
html, body {
    height: 100%; /* Full height of the viewport */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    background-color: #f9f9f9;
    color: #333;
}

/* Content Section */
#content {
    flex: 1; /* Allows the main content to grow and fill available space */
}

/* Header Section */
#header {
    background-color: #007bff; /* Blue background */
    color: white;
    text-align: center;
    padding: 40px;  /* Reduced padding for a smaller header */
    margin: 0;
}

#header h1 {
    margin: 0;
    font-size: 2rem;  /* Adjusted font size */
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 40px;
    background-color: #f4f4f4;
    color: #333;
    border-top: 2px solid #ccc;
}

#contact p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Contact Links */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-link img {
    width: 24px; /* Smaller icon size */
    height: 24px;
    border-radius: 50%;
}

.contact-link:hover {
    background-color: #4CAF50;
    color: white;
    transform: scale(1.05);
}

.contact-link:hover img {
    background-color: white;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    margin-top: auto;  /* Pushes the footer to the bottom */
}
