body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
  line-height: 1.6;
}

:root {
  --mobile-h2: 18px;
  --web-h2: 25px;
}
header {
  background: #0d6efd;
  color: white;
  padding: 20px;
  text-align: center;
}
img {
  max-width: 100%;
  border-radius: 8px;
}
h1,
h2 {
  color: #0d6efd;
  text-align: center;
  font-size: var(--web-h2);
}
.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pros,
.cons {
  flex: 1;
  padding: 15px;
  background: #f1f1f1;
  border-radius: 8px;
}
ul {
  padding-left: 20px;
}

.buy-btn {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 12px 20px;
  margin-top: 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.buy-btn:hover {
  background: #218838;
}
.main-content {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-self: center;
}

.images {
  display: flex;
  flex-direction: row;
}
.images img {
  width: 20vw;
  height: 50vh;
  object-fit: cover;
  padding: 10px;
}

.question h2 {
  color: black;
  text-align: start;
}
.question ul {
  padding: 0px;
  margin-left: 30px;
}

/* outfit-this-year */

.outfit-this-year h2 {
  color: black;
  text-align: start;
}
.outfit-this-year ol li {
  font-weight: bold;
}
/* styling-tips  */
.styling-tips h2 {
  color: black;
  text-align: start;
}
.styling-tips ul {
  margin-left: 30px;
}

@media (max-width: 768px) {
  .pros-cons {
    flex-direction: column;
  }
  .images {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .images img {
    width: 40vw;
    height: 50vh;
    object-fit: cover;
    padding: 10px;
  }
  .main-content {
    padding: 20px;
  }
  .main-content h1 {
    font-size: 21px;
  }
  .question h2 {
    font-size: 18px;
  }
}
