/* Footer BG */
.footer {
  overflow: hidden;
  background-color: #000626c5;
  justify-content: center;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  margin-top: auto;
  width: 100%;
}

/* Footer Columns */
.footer .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
}

/* Footer Logo */
.footer .logo {
  aspect-ratio: 43/25;
  width: 7rem;
  height: auto;
  padding-left: 2rem;
}

/* LinkedIn Container */
.linkedin {
  align-items: right;
  justify-content: right;
  display: flex;
  padding-right: 2rem;
}

/* LinkedIn Image */
.linkedin img {
  height: 2.5rem;
  width: auto;
}

/* Middle Text */
.footer p {
  font-size: 1rem;
  color: white;
  display: flex;
  justify-content: center;
  line-height: 1rem;
  margin-bottom: 0rem;
  padding-bottom: 0rem;
}

/* Phone Screen Size */
@media screen and (max-width: 1000px) {
  /* Middle Text Shrunk on Phone Sizing */
  .footer p {
    font-size: .75rem;
    color: white;
    display: flex;
    justify-content: center;
    line-height: 1rem;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
    width:15rem;
  }
}