footer{
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(34, 34, 34);
  height: auto;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
}

.socials{
  float: right;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
  padding-right: 5rem;
}

.socials li{
  margin: 0 10px;
}
.socials a{
  text-decoration: none;
  color: #fff;
  border: 1.1px solid white;
  padding: 5px;
  border-radius: 50%;
}

.socials a i{
  font-size: 1.1rem;
  width: 20px;
  transition: color .4s ease;

}
.socials a:hover i{
  color: #2240f8;
}

.footer-bottom{
  background: rgb(34, 34, 34);
  width: 100%;
  text-align: center;
}
.footer-bottom p{
  float: left;
  font-size: 1.1rem;
  word-spacing: 2px;
  text-transform: capitalize;
  padding-left: 5rem;
}

@media (max-width:1000px) {

  footer{
    padding-top: 5px;
    padding-bottom: 5px;
    background: rgb(34, 34, 34);
  }

  .socials{
    float: none;
    padding-top: 0.1rem;
    padding-right: 0rem;
  }

  .socials a i{
    font-size: 0.7rem;
  }

  .footer-bottom p{
    float: none;
    font-size: 0.7rem;
    padding-left: 0rem;
  }

  .socials a{
    text-decoration:solid;
    color: #fff;
    border: 1.1px solid white;
    padding: 1px;
    border-radius: 50%;
  }
}
