body{
    background-color: cornflowerblue;
}
.Heading{
    background-color: cornflowerblue;
    color:white;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.Nav {
    height: 40px;
    background-color: gray;
    color: maroon;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Nav a:hover {
    background-color: coral;
    color: black;
}

.Nav a {
   margin: 10px;
}

.Nav :visited {
    color: maroon;
}

.Content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Content img{
    padding: 5px;
    margin-top: 10px;
    border: 4px solid black;
}

.Content p {
    font-size: 18px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.Content h2 {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 100px;
}

.ContactDiv{
    margin: 100px;
    display: flex;
    flex-direction: column; /* Stack form elements vertically */
    justify-content: center; /* Horizontally center the form */
    align-items: center; /* Vertically center the form */
    max-width: 400px; /* Optional: Set a maximum width for the form */
    margin: 0 auto; /* Optional: Center the form horizontally on the page */
}

/* Center the entire form */
#ContactForm {
    display: flex;
    flex-direction: column; /* Stack form elements vertically */
    justify-content: center; /* Horizontally center the form */
    align-items: center; /* Vertically center the form */
    max-width: 400px; /* Optional: Set a maximum width for the form */
    margin: 0 auto; /* Optional: Center the form horizontally on the page */
}

/* Style the form elements */
.form-group {
    margin-bottom: 20px; /* Add vertical spacing between form elements */
}

/* Center the submit button */
#Contact_Submit {
    margin: auto; /* Center the button horizontally within the form */
}

/* Additional styling for the button */
#Contact_Submit {
    background-color: #009688;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}