/* extremely simple css styling project */
/* top part is left alone, and this bottom part gets the clear styling */

.styled-area {
  background-color: #003049;
  color: #ffffff;
  padding: 18px;
  margin-top: 30px;
  border: 6px solid #f77f00;
}

/* this heading is showing text color, font, spacing, and text shadow */

.styled-area h2 {
  font-family: monospace;
  font-size: 42px;
  color: #fcbf49;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 3px 3px #000000;
}

/* little note under the styled heading */

.small-note {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-style: italic;
  text-align: center;
  color: #eae2b7;
}

/* main box for the css demo */

.demo-box {
  background-color: #fdf0d5;
  color: #000000;
  padding: 20px;
  margin: 15px auto;
  max-width: 760px;
  border-radius: 8px;
  border: 4px dashed #d62828;
}

.demo-box h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  color: #d62828;
  text-align: center;
  text-decoration: underline;
}

/* this paragraph shows bigger bold text */

.main-text {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #003049;
  line-height: 1.5;
}

/* this paragraph shows italic text and a background color */

.second-text {
  font-family: monospace;
  font-size: 21px;
  font-style: italic;
  background-color: #fcbf49;
  color: #2f0000;
  padding: 10px;
}

/* this lists out what properties are being shown on the page */

.property-list {
  font-size: 18px;
  color: #ffffff;
  background-color: #d62828;
  padding: 12px;
  text-align: center;
}

/* this list is styled different from the regular browser list */

.styled-list {
  font-family: monospace;
  font-size: 20px;
  color: #003049;
  background-color: #eae2b7;
  list-style-type: square;
  padding: 15px 35px;
  border-left: 8px solid #f77f00;
}

/* images are styled here so its obvious compared to the plain images above */

.demo-img {
  width: 180px;
  height: 180px;
  background-color: #ffffff;
  border: 5px solid #003049;
  padding: 8px;
  margin: 10px;
  transition: transform .5s;
}

.round-img {
  border-radius: 50%;
}

/* simple hover effect for the images */

.demo-img:hover {
  transform: scale(1.1);
}

.hover-note {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #003049;
  font-style: italic;
}

.image-credit {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #555555;
  text-align: center;
}