html {
	font-size: 110%;
	background: white url("../img/animspace.gif") repeat;
}

@media (min-width: 768px) {
    html {
        background: lavender;
    }
}
  
  body a:link, body a:visited {
	color: DarkBlue;
	font-weight: 500;
  }
  
  body a:hover {
	color: blue;
  }
  
  #wrapper {
	max-width: 630px;
	padding: 40px 5%;
	background: white;
	box-shadow: 0 0 0 5px MidnightBlue inset;
	margin: 0 auto; /* Center the content */
  }
  
  header {
	display: block;
	margin-bottom: 1.8em;
  }
  
  .return {
	display: block;
	position: absolute;
	margin-left: -1.2rem;
	color: silver;
	top: 2.5rem;
	font-size: 1rem;
  }
  
  .return a:link, .return a:visited {
	color: SlateGrey;
  }
  
  h1 {
	font-size: 2rem;
	font-weight: 600;
  }
  
  h2 {
	font-size: 1.4rem;
	margin-top: 2rem;
	font-weight: 600;
  }
  
  h3 {
	font-size: 1.2rem;
	margin-top: 1.8rem;
  }
  
  p {
	line-height: 1.6rem;
  }
  
  ul {
	list-style-type: square;
	padding-left: 1.7rem;
	color: #333;
	margin: 2rem 0;
	font-size: 0.95rem;
  }
  
  ul li {
	margin: 0.8rem 1rem;
	padding: 0;
  }
  
  img.wide {
	max-width: 100%;
	height: auto; /* Keep aspect ratio */
  }
  
  article img, article figure {
	max-width: 100%;
	margin: 1.5rem 0;
  }
  
  blockquote {
	color: IndianRed;
	margin: 2rem 0;
	font-size: 1rem;
	padding: 0.5rem 1rem;
  }
  
  strong {
	font-weight: 500;
  }
  
  table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
  }
  
  table th, table td {
	border: 1px solid lightgrey;
	padding: 0.8rem;
	text-align: left;
  }
  
  table thead {
	background: MidnightBlue;
	color: white;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
	h1 {
	  font-size: 1.6rem;
	}
  
	h2 {
	  font-size: 1.2rem;
	}
  
	#wrapper {
	  padding: 20px 5%;
	}
  
	ul {
	  font-size: 0.9rem;
	}
  
	body {
	  font-size: 1rem;
	}
  
	table th, table td {
	  padding: 0.6rem;
	}
  }
  
  @media (max-width: 480px) {
	h1 {
	  font-size: 1.4rem;
	}
  
	h2 {
	  font-size: 1rem;
	}
  
	body {
	  font-size: 0.9rem;
	}
  
	#wrapper {
	  padding: 15px 3%;
	}
  }
  
  .justified-list {
    text-align: justify;
    list-style-type: none;
    padding-left: 0;
}

.justified-list li {
    margin-bottom: 20px; /* Adjust this for more or less space */
}
