/* Google Font */
body {
  font-family: 'Jura', sans-serif;
}

/* General Styles for Centering Content */
.center-content {
  text-align: center;
}

/* Responsive SVG Styles for Logos */
.responsive-svg {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.logo-large {
  max-width: 100%;
  max-height: 150px; /* Adjust this value to fit your design preference */
}

/* Styles for the JPEG Image to be Responsive and Centered */
.responsive-media-image {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Container to Limit the Size on Larger Screens */
.image-container, .social-links-container {
  max-width: 60%;
  margin: auto;
}

/* Styles for Social Links */
.social-link {
  display: inline-block;
  margin: 10px;
  text-decoration: none;
  color: #000;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
}

.social-link:hover, .social-link:focus {
  background-color: #e0e0e0;
}

/* Screenshot Container Styles */
.screenshot-container {
  display: block;
  position: relative;
  width: 100%; /* Let the container take up 100% of the width of its parent */
  max-width: 100%; /* Ensure the container scales responsively */
  height: auto; /* Maintain the aspect ratio */
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.screenshot-container img {
  display: block;
  width: 100%; /* Make the image take up 100% of the container width */
  height: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Ensures the image scales down if necessary */
}

.screenshot-caption {
  width: 100%;
  background-color: #eeefff; /* Light background color for caption */
  color: #000; /* Darker text for readability */
  padding: 10px;
  text-align: center;
  font-size: 15px;
  font-family: 'Jura', sans-serif; /* Applying the font here as well */
  box-sizing: border-box;
  border-bottom-left-radius: 12px; /* Rounds the bottom corners to match the container */
  border-bottom-right-radius: 12px;
  display: block; /* Ensure it's treated as a block element */
  background-clip: border-box; /* Ensures background covers the whole element, including padding */
  z-index: 1; /* Ensures it's on top of other elements */
}



/* Optional: Media query for mobile responsiveness */
@media (max-width: 768px) {
  .screenshot-caption {
    font-size: 12px; /* Slightly smaller caption text on mobile */
  }
}
