

/* Container for the contact form */
.contact-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Form headings */

h1 {
  font-family: 'Arcane Fable', sans-serif;
  font-size: 6em;
  }

h2 {
    margin-bottom: 10px;
}

/* Input field styles */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Error message */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Button styling */
button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Success message */
.hidden {
    display: none;
    color: green;
    font-weight: bold;
    margin-top: 15px;
}

IMAGES{
  height: 1500px;
  width: 800px;
  margin-top: 10px;
  padding:50px;
  
}