footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #463D32;
  font-size: 16px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px;
  width: 80%;
}

.footer-logo-container {
  img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
  }
  margin-bottom: 20px;
}

.footer-text {
  display: flex;
  vertical-align: middle;
  width: 100%;
}

.sitemap-container {
  flex: 1;
  list-style-position: inside;

  ul {
    color: #FFF3D9;
    

    a {
      color: #FFF3D9;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }
  }
}

.socials-list-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.socials-container {
  display: flex;
  vertical-align: middle;
  margin-bottom: 3px;

  img {
    width: 20px;
    height: 20px;
    border-radius: 3px;
  }
  
  a {
    color: #FFF3D9;
    text-decoration: none;
    padding-left: 3px;
    margin-top: 3px;
  }
  a:hover {
    text-decoration: underline;
  }
}

@media only screen and (min-width: 700px) {
  footer {
    height: 300px;
    font-size: 26px;
  }

  .footer-container {
    flex-direction: row;
    width: 85%;
    padding-right: 20px;
  }

  .footer-logo-container {
    margin-right: 20px;
    img {
      height: 150px;
      width: 150px;
    }
  }

  .socials-container {
    margin-bottom: 5px;

    img {
      height: 40px;
      width: 40px;
      border-radius: 8px; 
    }

    .footer-text {
      a {
        margin-top: 8px;
        padding-left: 5px;
      }
    }
  }
}

@media only screen and (min-width: 1200px) {
  .footer-container {
    width: 1000px;

    .footer-logo-container {
      img {
        height: 200px;
        width: 200px;
      }
    }
  }
}
