@import "layout/header.css";
@import "layout/grid.css";
@import "layout/responsive.css";

:root {
  --soft-orange: hsl(35, 77%, 62%);
  --soft-red: hsl(5, 85%, 63%);
  --off-white: hsl(36, 100%, 99%);
  --grayish-blue: hsl(233, 8%, 79%);
  --dark-grayish-blue: hsl(236, 13%, 42%);
  --very-dark-blue: hsl(240, 100%, 5%);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 3rem;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

main {
  max-width: 1440px;
  width: 100%;
  gap: 2rem;
  padding-bottom: 3rem;
}

.attribution a {
  text-decoration: none;
  color: var(--soft-red);
}

.attribution a:hover {
  text-decoration: underline;
  color: var(--soft-orange);
}
