@import url("root.css");

footer {
  background-color: var(--soft-dark);
  padding: 30px;
  font-family: var(--roboto);
  color: #fff;
  border-top: 2px solid var(--white);
}

.footer-row-container {
  display: flex;
  justify-content: space-evenly;
}

footer ul {
  list-style-type: none;
}

footer ul li {
  font-size: 18px;
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out;
}

footer ul li:hover {
  opacity: 1;
  text-decoration: underline;
}

footer h3 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 10px;
}

footer a {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;

}

.footer-logo {
  position: relative;
  top: -25px;
}

.footer-logo img {
  width: 180px;
}

.network-icon img {
  width: 30px;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.network-icon {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.copyright {
  font-style: italic;
  margin-top: 20px;
  text-align: center;
  opacity: 0.5;
  font-size: 1.6rem;
}

@media screen and (max-width: 900px) {
  .footer-row-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-logo {
    top: 0;
  }

  .row h3 {
    text-align: center;
  }

  .row ul li a {
    text-align: center;
  }
}