/* About Me Stylesheet by Marissa Gimbel */

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background-color: #fefaff;
  color: #333;
}

header {
  background-color: #6fa8dc;
  color: white;
  padding: 25px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
}

.profile-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 15px;
}

.form-section {
  background-color: #f3f8ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

form input[type="text"],
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

form input[type="submit"] {
  background-color: #6fa8dc;
  color: white;
  border: none;
  padding: 12px 20px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}
form input[type="submit"]:hover {
  background-color: #5b96c4;
}
footer {
  background-color: #6fa8dc;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 0.9em;
}
