/* <uniquifier>: Use a unique and descriptive class name
   <weight>: Use a value from 300 to 800
*/
h1,
h2,
p,
a {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 16px;
  line-height: 1.4;
  color: black;
  margin: 0;
  padding: 0;
}

/* custom */
html {
  background-color: #ddd;
  color: #000;
}
body {
  padding-bottom: 10rem;
}
main {
  padding: 2rem 2.5rem;
}
footer {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 2rem 2.5rem 1.5rem;
  background-color: white;
}
h1 {
  font-size: 3rem;
  font-weight: 400;
  padding-bottom: 1rem;
}
h2 {
  font-size: 1.5rem;
  font-weight: 300;
  padding-bottom: 2rem;
}
a {
  position: relative;
  display: block;
  text-decoration: none;
}
main a {
  display: inline-block;
}
a:hover::after {
  display: block;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid black;
}
a.primary {
  font-size: 1.25rem;
  color: white;
  background-color: black;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}
a.primary:hover::after {
  top: -.25rem;
  bottom: -.25rem;
  right: -.25rem;
  left: -.25rem;
  border: 2px solid black;
  border-radius: .5rem;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
li {
  margin: 0 0 1rem 0;
}
/* brealpoints for desktop */
@media screen and (min-width:800px) {
  main {
    padding: 4rem 5rem;
  }
  footer {
    padding: 3rem 5rem 2.5rem;
  }
}
@media only screen and (orientation: landscape) {
  body {
    padding-bottom: 6rem;
  }
  li {
    display: inline-block;
    margin-right: 2rem;
  }
}
