* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Hero section styling */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background: radial-gradient(circle, #bbbaba 15%, #555);
}

/* Image container styling */
.img-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image styling */
.img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}