:root {
  --yellow-canvas: #ffe66d;
  --ink-text: #222222;
  --font-display: "Milanesa Serif", Georgia, serif;
  --font-body: Nohemi, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--yellow-canvas);
  color: var(--ink-text);
  font-family: var(--font-body);
}

.page {
  min-height: 100vh;
  background: var(--yellow-canvas);
  padding: 100px 113px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hello-panel {
  width: 100%;
  max-width: 1040px;
  border: 1px solid var(--ink-text);
  padding: 100px 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.hello-copy {
  max-width: 650px;
}

h1 {
  margin: 0;
  padding: 0 0 50px;
  color: var(--ink-text);
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
}

p {
  max-width: 65ch;
  margin: 0;
  color: var(--ink-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.167em;
}

.illustration {
  width: 260px;
  height: 260px;
  border: 1px solid var(--ink-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.illustration svg {
  display: block;
}

@media (max-width: 760px) {
  .page {
    padding: 50px 20px;
    align-items: flex-start;
  }

  .hello-panel {
    padding: 50px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 60px;
  }

  .illustration {
    width: 220px;
    height: 220px;
  }
}
