a {
  text-decoration: none;
  color: black;
}

html {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.phrase-xl {
  font-size: 2.5rem;
}

.phrase-l {
  font-size: 2.0rem;
}

.nav {
  padding: 20px 50px 20px 50px;
  background-image: url('assets/tile-pattern.svg');
  box-shadow: 0px 0px 7px #aaeeff;
}

.nav-logo {
  width: 100%;
}

.nav-logo-container {
  width: 10.5em;
}

@media only screen and (max-width: 740px) {
.nav {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.nav-logo-container {
  display: none;
}
}

#nav-company-name {
  color: black;
  text-weight: bold;
  background-color: white;
  padding: 10px;
  border-radius: 4px;
}

.nav-call-now {
  background-color: #fafa39;
  padding: 0.8em;
  border-radius: 2em;
  font-size: 1.5em;
}

.nav-call-now:hover {
  filter: brightness(120%);
}

.phone {
  font-weight: bold;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.center-text {
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: center;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7em;
  padding: 40px;
  margin-top: auto;
  background-image: url('assets/tile-pattern.svg');
  background-repeat: repeat;
  box-shadow: 0px -1px 7px #aaeeff;
}

.footer-section {
  background-color: white;
  padding: 10px;
}

.footer-header {
  font-weight: bold;
  text-align: center;
}

.footer-item {
  font-size: 1.0rem;
  text-align: center;
}

.showcase-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.showcase-box {
  position: relative;
  max-width: 600px;
  max-height: 600px;
  width: 100%;
  text-align: center;
}

.showcase-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 1px 1px 2px black;
}

.showcase-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
