.footer {
  background-color: #DCDCDC;
  height: 200px;
  width: 100%;
  user-select: none;
}

.footer h1 {
  text-align: center; 
}

.left {
  display: inline-block;
}

.left img {
  margin-top: 50px;
  margin-left: 30px;
  padding: 10px 10px;
  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);
}


.center {
  display: inline-block;
  margin-left: 200px;
}

.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-left: 400px;
}

.right h2 {
  font-size: 30px;
}

.right h3 {
  margin-top: 10px;
  font-size: 25px;
}

.right a {
  text-decoration: none;
  color: black;
  transition: color 0.4s ease;
}

.right a:hover {
  color: blue;
}








@media (max-width: 600px){

    .left img {
      margin-top: 10px;
      margin-left: 30px;
      width: 40px;
      padding: 0px 0px;
    }
     .center {
      display: inline-block;
      margin-left: 10px;
      margin-top: 20px;
     }

     .center h2 {
      font-size: 13px;
     }

     .center h3 {
      font-size: 13px;
     }


     .right {
      display: inline-block;
      margin-left: 20px;
     }

     .right h2 {
      font-size: 13px;
     }

     .right h3 {
      font-size: 13px;
     }
}

























