@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Poppins:wght@300&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.animg {
   width: 30rem;
   height: 30rem;
   margin: -40px auto -50px;
}

@media screen and (max-width: 768px) {
.animg {
    width: 100%;
    height: auto;
	margin: 0;
  }
}

footer {
  position: relative;
  width: 100%;
  bottom: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  flex: 1;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer ul li {
  list-style: none;
}

#contact {
	padding: 1rem 0;
}

#contact a {
  color: #00509e;
  margin: 10px;
}

#contact {
  color: #00509e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 125px;
  background-color: #9ecfff;
  box-shadow: 0 -4px 16px #e1e5ee;
}

.icon {
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s, box-shadow 0.5s;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.12), 0 2px 2px rgba(0, 0, 0, 0.24);
}

#icon-container {
  display: flex;
  justify-content: center;
}

.icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 5px 5px rgba(0, 0, 0, 0.12), 0 3px 5px rgba(0, 0, 0, 0.24);
}

#contact p {
  font-size: 14px;
}

@media screen and (max-width: 426px) {
  #icon {
    width: 30px;
    height: 30px;
  }

  #contact p {
    font-size: 10px;
  }
}
@media screen and (min-width: 2560px) {
  #icon {
    width: 50px;
    height: 50px;
  }

  #contact p {
    font-size: 16px;
  }
}