html, body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text color */
}

header {
  background-color: #424242; /* Dark grey background */
  color: #ffffff; /* White text */
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #ffffff; /* White title */
}

main {
  max-width: 80vw; /* Use vw for max width */
  margin: 2vh auto; /* Vertical margin using vh */
  padding: 0 2vw; /* Horizontal padding using vw */
}

article {
  background-color: #f8f8f8; /* Light gray background */
  padding: 2vh; /* Vertical padding using vh */
  border-radius: 0.5rem; /* Adjusted for consistency */
  margin-bottom: 2vh; /* Bottom margin using vh */
  position: relative;
}

article h2 {
  margin: 0 0 1vh; /* Bottom margin using vh */
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem; /* Adjusted size */
  text-align: center;
  color: #000000; /* Black text color */
}

article p {
  font-size: 1rem; /* Adjusted size */
  line-height: 1.6;
  color: #000000; /* Black text color */
  margin-bottom: 2vh; /* Bottom margin using vh */
  text-indent: 2em;
}

.noindent {
  text-indent: 0em;
}

article a {
  text-decoration: none;
  color: #333333; /* Dark gray for links */
  font-weight: bold;
}

article a:hover {
  text-decoration: underline;
}

.back-to-timeline {
  text-align: center;
  margin-top: 2vh; /* Top margin using vh */
}

/* Extra box styling */
.extra {
  width: 30vw; /* Width using vw */
  padding: 2vh; /* Vertical padding using vh */
  background-color: #ffffff;
  border-radius: 0.5rem; /* Adjusted for consistency */
  border: 2px solid #333333; /* Dark gray border */
  float: right;
  margin-left: 2vw; /* Left margin using vw */
}

.extra h3 {
  margin-top: 0;
  color: #000000; /* Black text color */
  font-size: 1.7rem; /* Adjusted size */
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  color: #000000; /* Black text color */
  font-size: 1.5rem; /* Adjusted size */
}

/* Image styling */
img {
  padding-top: 0px;
  padding-bottom: 2vh; /* Bottom padding using vh */
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem; /* Rounded corners */
}

.comment-section {
  margin-top: 4vh; /* Top margin using vh */
  padding: 2vh; /* Vertical padding using vh */
  background-color: #f0f0f0;
  border-radius: 0.5rem; /* Adjusted for consistency */
}

.comment-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem; /* Adjusted size */
  margin-bottom: 2vh; /* Bottom margin using vh */
}

.comment-section form div {
  margin-bottom: 1.5vh; /* Bottom margin using vh */
}

.comment-section label {
  display: block;
  margin-bottom: 0.5vh; /* Bottom margin using vh */
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.comment-section input[type="text"],
.comment-section textarea {
  width: 100%;
  padding: 1vh; /* Padding using vh */
  border: 1px solid #ccc;
  border-radius: 0.25rem; /* Adjusted for consistency */
  font-family: "Open Sans", sans-serif;
  font-size: 1rem; /* Adjusted size */
}

.comment-section button {
  padding: 1vh 1.5vw; /* Vertical and horizontal padding using vh and vw */
  background-color: #333333;
  color: #ffffff;
  border: none;
  border-radius: 0.25rem; /* Adjusted for consistency */
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.comment-section button:hover {
  background-color: #555555;
}

#comments {
  margin-top: 3vh; /* Top margin using vh */
}

#comment-list {
  list-style-type: none;
  padding: 0;
}

#comment-list li {
  padding: 1.5vh; /* Vertical padding using vh */
  border-bottom: 1px solid #ccc;
  margin-bottom: 1.5vh; /* Bottom margin using vh */
}

.share-section {
  margin-top: 4vh;
  padding: 2vh;
  background-color: #f0f0f0;
  border-radius: 0.5rem;
  text-align: center;
}

.share-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 2vh;
  color: #000000;
}

.share-section .share-icons {
  border-radius: 0px;
  display: flex;
  justify-content: center; /* Align items horizontally */
  align-items: center;
  gap: 1vw; /* Space between icons */
}

.share-section .share-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0; /* Remove padding */
  transition: transform 0.3s ease; /* Smooth zoom on hover */
}

.share-section .share-icons .social-icon {
  height: 4rem; /* Icon size */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Hover effect with slight zoom */
.share-section .share-icons a:hover .social-icon {
  transform: scale(1.15); /* Slight zoom on hover */
}