/* header styling */
.header {
  padding: 1rem 3rem;
  display: grid;
  grid-template-areas: 
      "logo title title link";
  align-items: center;
  justify-items: center;
}

/* .header > .container {
  max-width: 1200px;
} */

.header-content {
  grid-area: title;
  display: grid;
  align-items: center;
  
}

.header-logo {
  grid-area: logo; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 300px;
  max-width: auto;
  height: auto;
  display: block;
  justify-items: center;
  align-items: center;
}

.header-motto {
  margin: 0.5rem auto;
  padding: 0;
  box-shadow: 0 0 0.1rem var(--primaryColor);
  border-radius: 0.3rem;
  width: 100%;
  padding: 0.5rem;
  display: grid;
  grid-template-areas:
      "school-name"
      "motto"
      "time";
  align-items: center;
  justify-items: center;
  justify-content: center;
  border-top: 4px solid var(--primaryColor);
}

.school-name {
  grid-area: school-name;
  text-transform: uppercase;
  font-size: 2.0rem;
  font-family: var(--secondaryFont);
  font-weight: bold;
  color: var(--secondaryColor);
  justify-items: center;
   text-align: center;
}

.motto {
  grid-area: motto;
  font-size: 1.2rem;
  color: var(--tertiaryColor);
  text-align: center;
}

.header-time {
  grid-area: time;
  margin-top: 2rem;
  background: var(--primaryColor);
  color: var(--whiteColor);
  margin-bottom: -1.2rem;
  padding: 0 0.5rem;
  font-weight: bold;
  border-radius: 0.3rem;
  text-align: center;
}

.visit-portal {
  grid-area: link;
  display:flex;
  justify-content: center;
  align-items: center;
}

.visit-link {
 
  justify-content: center;
  align-items: center;
}

.visit-link .bi {
  margin-bottom: 0.5rem;
  margin-left: 0.3rem;
}
