*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  display: grid;
  place-items: center;
}

body {
  /* ensure it stays fixed if you scroll */
  background-attachment: fixed;

  /* fallback color if image doesn’t load */
  background-color: #000000;

  background-image: url("pattern.svg");
  background-repeat: repeat; /* ← makes it tile */
  background-size: 400px 400px; /* ← adjust to your desired pattern‐tile dimensions */
}

/* but inside the business‐group, pack those two lines tight */
.business-group {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem; /* or even 0.05rem—tweak until it’s just right */
}

.nosifer-regular {
  font-family: "Nosifer", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* your existing styles for font/color still apply */
.business-name {
  background: black;
  border-radius: 20px;
  padding-left: 2px;
  padding-right: 2px;
  color: #00d9ff;
  font-size: 1.1rem;
}
.experience {
  text-align: center;
  background: black;
  border-radius: 20px;
  color: #e67e22;
  font-size: 1.1rem;
}

/* TOP NAV */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  font-family: sans-serif;
  font-size: 0.9rem;
  padding-bottom: 10px;
}

.nav-right {
  display: flex;
  gap: 1rem;
}
.nav-right a {
  color: white;
}

.nav-link {
  background: black;
  border-radius: 10px;
  padding: 1px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  text-decoration: underline;
}

.nav-tel {
  padding-left: 5px;
  padding-right: 5px;
}
.nav-email {
  padding-left: 5px;
  padding-right: 5px;
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
  .top-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.nav-link .fa-solid {
  /* icons inherit from .nav-link, but if you need a different color: */
  color: rgb(0, 191, 255);
}

/* give your injected paras some breathing room */
.random-paragraph {
  margin: 1rem 0; /* vertical space before & after */
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}

.nunito-sans {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

.twentytwenty-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.twentytwenty-container {
  width: 100%;
  height: 400px;
  margin: 2rem 0;
  border-radius: 20px;
  max-width: 600px;
  margin: 2rem auto;
}
.twentytwenty-container img {
  width: inherit;
  height: inherit;
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
  .twentytwenty-container {
    height: 200px;
  }
}
