/*Foonts*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 52px;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 42px;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 32px;
}

h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}

.overAll {
  position: relative;
  z-index: 100;
}

/* smooth scroll */
html {
  scroll-behavior: smooth;
}

footer {
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  background-color: #B4E2E7;
  height: 200px;
}

.toStack {
  display: flex;
  justify-content: space-around;
}

.toStack.mails {
  display: flex;
  justify-content: center;
}

footer .toStack a {
  color: #000;
}

hr {
  border: #ffffff77 solid 1px;
}

@media only screen and (max-width: 758px) {
  footer {
    justify-content: center;
    align-content: center;
    height: 500px;
  }

  footer .toStack {
    display: flex;
    flex-flow: column;
    column-count: 1;
    align-items: center;
  }

  footer .toStack a {
    margin-bottom: 15px;
  }
}