/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Main container */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Title */
#mainTitle {
  font-size: 2.5em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

/* Brand image */
#brand-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 30px;
}
/* Left-side image */
#left-side-image {
  float: left;
  width: 30%;
  max-width: 300px;
  margin-right: 20px;
  margin-bottom: 20px;
}

/* Webpage container */
.webpage {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Paragraphs */
.p {
  margin-bottom: 20px;
}

h2 {
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 15px;
}

/* Italics */
i {
  font-style: italic;
}

/* Links */
a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* List */
ul {
  list-style-type: none;
  margin-top: 20px;
}

li {
  margin-bottom: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
  main {
    padding: 10px;
  }

  #mainTitle {
    font-size: 2em;
  }

  .webpage {
    padding: 20px;
  }

  h2 {
    font-size: 1.5em;
  }
}