body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  background-image: url(./Images/homepage-image.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Playwrite AU TAS", cursive;
  height: 100vh;
  font-weight: 900;
}
#name-banner {
  flex: 1;
  width: calc(50vw - 1.4rem);
  text-align: center;
  align-content: center;
  margin: .35rem .7rem .35rem .7rem;
  background-color: hsla(180, 100%, 50%, 0.442);
}
#name-banner h1 {
  font-size: 3rem;
  color: hsl(16, 97%, 50%);
  text-shadow:
    /* HARD CORE */
    0 0 1px hsla(50, 100%, 95%, 1),
    0 0 2px hsla(50, 100%, 95%, 1),
    0 0 3px hsla(50, 100%, 95%, 1),

    /* DENSE BODY */
    0 0 6px hsla(48, 100%, 85%, 0.95),
    0 0 8px hsla(48, 100%, 85%, 0.95),
    0 0 10px hsla(48, 100%, 85%, 0.95),

    /* BRIGHT HALO */
    0 0 18px hsla(45, 100%, 75%, 0.85),
    0 0 30px hsla(45, 100%, 70%, 0.7),

    /* OUTER BLOOM */
    0 0 60px hsla(42, 100%, 65%, 0.5);
  
  
}
#content {
  display: flex;
  flex-direction: column;
  min-height: 0;
  font-size: 1.5rem;
  width: calc(50vw - .7rem);
}
#our-services {
  flex: 1;
  margin: .35rem .35rem;
  background-color: hsla(180, 100%, 50%, 0.444);
  padding: .5rem;
  color: rgba(137, 43, 226, 0.637);
  overflow-y: auto;
}
#our-services::-webkit-scrollbar {
  width: 10px;   /* REQUIRED or nothing shows */
}

#our-services::-webkit-scrollbar-track {
  background-color: hsl(197, 71%, 73%);
  border-radius: 10px;
}

#our-services::-webkit-scrollbar-thumb {
  background-color: rgba(137, 43, 226, 0.27);
  border-radius: 10px;
}

#our-services::-webkit-scrollbar-thumb:hover {
  background-color: rgba(137, 43, 226, 0.478);
}
#what-we-do {
  flex: 1;
  margin: .35rem .35rem;
  background-color: hsla(180, 100%, 50%, 0.442);
  padding: .5rem;
  color: rgba(137, 43, 226, 0.637);
  overflow-y: auto;
}
#what-we-do::-webkit-scrollbar {
  width: 10px;   /* REQUIRED or nothing shows */
}

#what-we-do::-webkit-scrollbar-track {
  background-color: hsl(197, 71%, 73%);
  border-radius: 10px;
}

#what-we-do::-webkit-scrollbar-thumb {
  background-color: rgba(137, 43, 226, 0.27);
  border-radius: 10px;
}

#what-we-do::-webkit-scrollbar-thumb:hover {
  background-color: rgba(137, 43, 226, 0.478);
}
/* 📱 Tablets */
@media (max-width: 1024px) {

  #name-banner {
    width: 100vw;
  }

  #name-banner h1 {
    font-size: 3.5rem;
  }

  #content {
    width: 100vw;
    flex-direction: column;
  }

  #our-services,
  #what-we-do {
    margin: .35rem;
    font-size: 1.3rem;
  }
}


/* 📱 Phones */
@media (max-width: 600px) {

  body {
    height: auto;
    font-family: sans-serif;
  }

  #name-banner {
    width: calc(100vw - 1.4rem);
  }

  #name-banner h1 {
    font-size: 3rem;
    padding: .5rem;
  }

  #content {
    flex-direction: column;
  }

  #our-services,
  #what-we-do {
    font-weight: 900;
    font-size: 1.3rem;
    margin: .7rem;
    max-height: none;
  }
}
