body {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: hsl(0deg, 0%, 96%);
  color: hsl(0deg, 0%, 9%);
  margin: 0;
  gap: 20px;
}

header {
  height: 50px;
  background: white;
  display: flex;
  align-items: center;
  padding-left: 10vw;
  box-shadow: 0 1px 0 hsl(0deg, 0%, 90%);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 80vw;
  background: white;
  margin: 0 10vw;
  padding: 40px;
  box-shadow: 0 1px 0 hsl(0deg, 0%, 90%);
}

footer {
  background: hsl(0deg, 0%, 9%);
  color: white;
  display: flex;
  flex-direction: column;
  font-size: 12px;

  align-items: flex-start;
  padding-top: 20px;
  box-shadow: 0 1px 0 hsl(0deg, 0%, 90%);

  padding-left: 10vw;
  padding-right: 10vw;

  .content {
    width: 60vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;

    p {
      max-width: 60ch;
    }
  }

  h1 {
    font-size: 16px;
  }

  h2 {
    font-size: 14px;
    margin-bottom: 0;
  }
}

h1 {
  color: hsl(21deg, 75%, 49%);
}

.logo {
  height: 24px;
  width: auto;
}

a {
  color: hsl(21deg, 75%, 49%);
}

.icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;

  svg {
    width: 100%;
    height: 100%;

    path {
      fill: hsl(0deg, 0%, 9%);
    }
  }
}
