@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700;800&display=swap');

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2vh 5vw;
  height: 100vh;
  overflow-y: auto;
  text-align: center;
}

.inner-wrapper {
  margin: auto 0; /* Vertically centers it when there's space */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0.5rem 0;
}

p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  margin: 0.25rem 0;
}

img {
  max-width: 80%;
  max-height: 35vh;
  height: auto;
  object-fit: contain;
}

.last-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.last-row h2 {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 700;
  margin: 0
}
