.footer {
  background-color: #DCDCDC;
  height: 200px;
  width: 100%;
  user-select: none;
}

.footer h1 {
  text-align: center; 
}

.left {
  display: inline-block;
  margin-bottom: 30px;
}

.left img {
  padding: 5px 5px;
  width: 90px;
  transition: transform 1.1s ease;
  border-radius: 20px;
}

.left img:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 8px rgba(0,0,0,0.8);
}

.left a {
  text-decoration: none;
}



.center {
  display: inline-block;
  margin-bottom: 30px;
}

.center h2{
  margin-top: 10px;
  font-size: 30px;
}

.center h3 {
  font-size: 25px;
}

.center a {
  color: black;
  text-decoration: none;
  transition: color 0.5s ease;
}

.center a:hover {
  color: blue;
}



.right {
  display: inline-block;
  margin-bottom: 30px;
}

.right h2 {
  font-size: 30px;
}

.right h3 {
  font-size: 25px;
}

.right a {
  text-decoration: none;
  color: black;
  transition: color 0.4s ease;
}

.right a:hover {
  color: blue;
}








@media (max-width: 425px){
  .left img {
    width: 95px;
    margin-top: 30px;
  }

  .rigth h3 {
    width: 100px;
  }

  .block_center {
    margin-right: 60px;
  }

  .block_right {
    margin-right: 30px;
  }
}

@media (max-width: 375px) {


  .left img {
    width: 80px;
  }

  .center {
    margin-left: 0px;
  }

  

  .block_center {
    margin-right: 80px;
  }

  .block_right {
    margin-right: 60px;
  }

  .right h2{
    font-size: 25px;
  }

  .block_center h3 {
    font-size: 20px; 
  }

  .block_right h3 {
    font-size: 20px;
  }

  .center h2 {
    font-size: 25px;
  }


  
}

@media (max-width: 320px) {
  .left img {
    width: 70px;
  }

  .center {
    margin-left: 0px;
  }


  .block_center {
    margin-right: 30px;
  }

  .block_right {
    margin-right: 10px;
  }

  .right h2{
    font-size: 20px;
  }

  .block_center h3 {
    font-size: 20px; 
  }

  .block_right h3 {
    font-size: 20px;
  }

  .center h2 {
    font-size: 20px;
  }






}







