body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
/* background: #fff url("images/montagus-background.svg") no-repeat center center fixed; */
/* background-size: 80vh; */

  font-family: "Gelica", sans-serif; /* Replace with actual family from Typekit */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}


/* --- Van illustration bottom-right (no HTML changes) --- */
body::after {
  content: "";
  position: fixed;
  right: 2vw;
  bottom: 2vh;
  width: 360px;              /* fixed size (about 10% smaller) */
  aspect-ratio: 3.2 / 1;     /* keeps proportions of your van */
  background: url("images/van.png") no-repeat center / contain;
  pointer-events: none;         /* let clicks pass through */
  z-index: 0;
}

/* ensure content sits above the decorative van */
.container { position: relative; z-index: 1; }


@keyframes drive {
  0%   { transform: translateX(-110vw); }
  100% { transform: translateX(110vw); }
}

/* enable animation */
body::after {
  animation: drive 20s linear infinite;
}



.container {
  max-width: 600px;
  padding: 20px;

}


.para-container {
  max-width: 600px;
  margin-top: 2rem;
	margin-bottom: 2rem;

}

img.logo {
  max-width: 240px;
  height: auto;
}

h1 {
  font-size: 4rem;
  margin-bottom: 10px;
font-weight: 500;
	line-height: 3.8rem;
}

p {
  font-size: 1rem;
  line-height: 1.8rem;
	font-weight: 300;
}

.about {
  margin-bottom: 30px;
}


/* Position social links in the top-right corner */
.social {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10;
  text-align: right;
}


.social a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.social a:hover {
  color: #75160f;
}

/* Responsive breakpoints */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
	  line-height: 2.8rem;
  }
  
}

@media (max-width: 480px) {
  img.logo {
    max-width: 120px;
  }
  h1 {
    font-size: 2.8rem;
	  line-height: 2.6rem;
  }
  
}

@media (max-width: 375px) {
  body::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .social {
    position: fixed;
    bottom: 16px;
    top: auto;
    right: 50%;
    transform: translateX(50%);
    text-align: center;
  }
}


