@font-face {
  font-family: 'Raleway';
  src: url('fonts/Raleway-VariableFont_wght.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: 'Raleway', system-ui, sans-serif;
  background-color: #fafaf8;
  color: #1a1a1a;
  padding: clamp(20px, 5vw, 40px) 20px;
  height: 100%;
}

h1 {
  font-size: clamp(2.25rem, 8vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}