#footer{
  width: 45%;
  margin-right: 0;
  margin-left: auto;
  height: 8vh;
  background-color: black;
  color: white;
  display: flex;
  position: relative;
  align-items: center;
  justify-content:space-around ;
  padding: 16px;
  font-size: 1rem;
  border-radius: 16px 0 0 0;
  

  
}

#footer .copyright{
  font-size: 0.8rem;
}
#footer a p{
  text-decoration: none;
  font-family: 'Quicksand', sans-serif; 
  font-size: 0.8rem;
  margin-right: 16px;
}

#footer a:link {
  color: white;
}

#footer a:visited {
  color: white;
}

#footer a:hover {
  color: #db0500;
}

@media screen and (max-width: 768px)
{

/*------------footer---------- */
#footer{
    width: 80%;
    margin-right: 0;
    margin-left: auto;
    height: 16vh;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content:space-around ;
    padding: 0px;
    font-size: 1rem;
    border-radius: 16px 0 0 0;
  }

  #footer .copyright{
    font-size: 0.8rem;
  }
  #footer a p{
    text-decoration: none;
    font-family: 'Quicksand', sans-serif; 
    font-size: 0.8rem;
    margin-right: 16px;
  }

  #footer a:link {
    color: white;
  }

  #footer a:visited {
    color: white;
  }

  #footer a:hover {
    color: #db0500;
  }
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
#footer{
    width: 85%;
    transform: translateY(-15000px);
  }
}