@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
}

body {
  color: #292929;
  font-family: "DM Sans", Geneva, Tahoma, sans-serif;
  margin: 0;
}

h1 {
  text-align: center;
}

.home-link {
  background-color: white;
  border-radius: 0 0 8px 0;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  color: black;
  display: inline-block;
  font-size: 1.1em;
  font-weight: 500;
  padding: 0.7em;
  text-decoration: none;
  transition: 75ms ease-out;
}

.home-link:hover {
  background-color: lightgray;
  text-decoration: underline;
  transition: 0.1s ease-out;
}

footer {
  bottom: 0;
  padding: 1em;
  position: absolute;
  text-align: center;
  width: 100%;
}
