body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

* {
    box-sizing: border-box;
}

.title {
    text-align: center;
    margin-top: 20px;
    color: #4682B4;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

/* Additional styling */
.container {
    max-width: 600px;
    margin: 50px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header {
    background-color: #003366;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
header nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
header nav ul li {
    margin: 0 15px;
  }
header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem; /* Increased font size for header links */
    transition: color 0.3s;
  }
header nav ul li a:hover {
    color: #cce5ff;
  }

body {
  background-image: url("pic/Jelly.gif");
  background-color: #cccccc;
  background-size: cover; /* Scales the image to cover the entire background */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center center; /* Centers the image in the viewport */
}
