<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>spicygirls new document title</title>
</head>
<body>
<p>/* Reset some default styles */ * {     margin: 0;     padding: 0;     box-sizing: border-box; }  /* Body styles */ body {     font-family: Arial, sans-serif;     line-height: 1.6;     background-color: #f4f4f4;     color: #333; }  /* Header styles */ header {     background-color: #4CAF50;     color: white;     padding: 20px 0;     text-align: center; }  header h1 {     margin-bottom: 10px; }  header p {     font-style: italic; }  /* Navigation styles */ nav {     background-color: #333; }  nav ul {     list-style-type: none;     text-align: center; }  nav ul li {     display: inline;     margin-right: 20px; }  nav ul li a {     color: white;     text-decoration: none;     font-weight: bold; }  nav ul li a:hover {     text-decoration: underline; }  /* Main content styles */ main {     padding: 20px;     margin: 0 20px; /* Adds margin to the left and right sides */     max-width: 1100px;     margin-left: auto;     margin-right: auto; /* Center the content */ }  /* Section styles */ section {     margin-bottom: 30px; }  section h2 {     color: #333;     margin-bottom: 10px; }  section p {     font-size: 1.1em; }  /* Footer styles */ footer {     background-color: #333;     color: white;     text-align: center;     padding: 10px;     position: fixed;     width: 100%;     bottom: 0; }</p>
<p>/* General Body Styles */body {&nbsp; &nbsp; font-family: Arial, sans-serif;&nbsp; &nbsp; line-height: 1.6;&nbsp; &nbsp; background-color: #f4f4f4;&nbsp; &nbsp; color: #333;&nbsp; &nbsp; text-align: center;}<br />/* Image Styles */.responsive-image {&nbsp; &nbsp; max-width: 100%;&nbsp; &nbsp; &nbsp;/* Make the image responsive */&nbsp; &nbsp; height: auto;&nbsp; &nbsp; &nbsp; &nbsp; /* Maintain aspect ratio */&nbsp; &nbsp; display: block;&nbsp; &nbsp; &nbsp; /* Remove any extra space below the image */&nbsp; &nbsp; margin: 0 auto;&nbsp; &nbsp; &nbsp; /* Center the image horizontally */}<br />/* Media Queries for Mobile */@media (max-width: 768px) {&nbsp; &nbsp; .responsive-image {&nbsp; &nbsp; &nbsp; &nbsp; width: 90%;&nbsp; &nbsp; /* On mobile, use 90% of the screen width */&nbsp; &nbsp; &nbsp; &nbsp; margin-bottom: 20px; /* Add some margin below the image on mobile */&nbsp; &nbsp; }}<br />/* Media Queries for Desktop */@media (min-width: 769px) {&nbsp; &nbsp; .responsive-image {&nbsp; &nbsp; &nbsp; &nbsp; width: 70%;&nbsp; &nbsp; /* On desktop, use 70% of the screen width */&nbsp; &nbsp; }}</p>
</body>
</html>