body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2c45b4; /* Blue background */
    color: #eb2a00; /* Orange text */
}

header, footer {
    background-color: #f4f4f4;
    padding: 10px 0;
    text-align: center;
}

#logo {
    width: 600px; /* Set the width */
    height: 300px; /* Set the height */
    object-fit: contain; /* Adjusts the size of the image to cover the frame */
}

h1, h2 {
    color: #eb2a00; /* Orange text for headers */
}

.link {
    color: #ff7152; /* Orange gradient for hyperlinks */
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

/* Add more styling as needed */
