@import url("https://fonts.googleapis.com/css2?family=Noto+Serif&family=Nunito:ital,wght@1,700&family=Poppins:ital,wght@0,500;0,600;1,300&display=swap");
body {
  font-family: "Poppins", sans-serif;
  background-color: rgb(238, 232, 224);
}
.section-main {
  width: 50%;
  margin: auto;
  margin-top: 1rem;
  text-align: center;
}
img {
  width: 20%;
  border-radius: 50%;
}
a {
  text-decoration: none;
  color: aliceblue;
  font-size: 1.4rem;
}
a:hover {
  color: rgb(15, 15, 15);
}
.box-link {
  background-color: rgb(26, 86, 133);
  transition: 0.1s ease-in;
  border-radius: 5rem;
  padding: 20px;
  border: 2px solid rgb(15, 56, 87);
  margin: 15px 0;
}
.box-link:hover {
  background-color: transparent;
}
.sub-heading {
  font-size: 1.5rem;
}
.footer {
  margin-top: 10%;
  font-size: 2.1rem;
}
@media screen and (max-width: 720px) {
  .section-main {
    width: 70%;
  }
}
