/* ======================================
   Marissa's World Stylesheet
   Author: Marissa A. Gimbel
   ====================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fafafa;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background-color: #666;
  padding: 30px;
  text-align: center;
  color: white;
}

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

header p {
  font-size: 1.2em;
  font-style: italic;
}

/* Main content */
main {
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

section h2 {
  color: #444;
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}

img {
  display: block;
  margin: 10px 0;
  max-width: 100%;
  height: auto;
}

a {
  display: inline-block;
  margin-top: 10px;
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Lists */
ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}
/* Footer */
footer {
  background-color: #777;
  text-align: center;
  padding: 15px;
  color: white;
  font-size: 0.9em;
}
/* Responsive design */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  header h1 {
    font-size: 2em;
  }
}
