*
{
    margin: 0;
    padding: 0;
}

footer {
  background-color: #161616;
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
}

html, body {
  height: 100%;
  margin: 0;
}

footer p
{
    font-weight: 100;
    font-size: 1rem;
}

footer div:nth-child(3) p:nth-child(1)
{
    font-weight: 300;
    padding-top: 1vh;
    line-height: 3rem;
}

footer h2
{
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 3rem;
}

footer div img
{
    width: 3vh;
    margin: 0 0.5vw;
    height: auto;
}

footer .line
{
    display:none;
}

/* Mobile devices */
@media (max-width: 1214px) {
    .socials h2, .authors h2, .authors p, .contact h2, .contact p, .address h2, .address p {
      font-size: 0.9rem;
    }    
}

@media (max-width: 1024px) {
  footer {
      height: auto;
  }
  footer .address {
    display: none;
  }
  footer .authors {
    width: 40vw;
  }
}

@media (max-width: 768px) {
  footer {
    position: relative;
    bottom: 0;
    height: 22vh;
    flex-direction: column;
    align-items: center;
  }
  
  .socials h2 {
    display: none;
  }

  .socials img {
    width: 3rem;
    height: auto;
    margin: 2vh 10vw 0;
  }

  .contact {
    display: none;
  }

  footer .line {
    width: 90%;
    display: block;
  }
  
  footer .authors {
    width: 80%;
  }

  footer .authors p {
    text-align: center;
    margin-top: -1vh
  }
}

@media (max-width: 550px) {
  footer .authors p {
    font-size: 0.8rem;
  }
}

@media (max-width: 425px) {
  footer {
      padding: 15px 10px;
      flex-direction: column;
      text-align: center;
  }

  footer p, footer h2 {
      margin: 5px 0;
      font-size: 0.9rem;
  }

  footer img {
      width: 2rem;
      margin: 5px;
  }

  footer .line {
      margin: 10px 0;
  }
}

@media (max-width: 381px)
{
  .socials img
  {
    margin: 2vh 5vw 0;
  }
}

@media (max-width: 375px) {
  footer {
      height: auto;
      padding: 10px 5px;
  }
}