* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 3rem 1rem 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

header {
  background: url('Greenville-Shot-with-Paris-Mountain-in-background.jpg') no-repeat center center/cover;
  padding: 3rem 1rem;
  text-align: center;
}

header img {
  max-width: 260px;
  height: auto;
}

section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

section:last-of-type {
  margin-bottom: 0 !important;
}

section img {
  width: 250px;
  height: auto;
  border-radius: 4px;
}

.text {
  flex: 1;
  min-width: 260px;
}

.text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

footer {
  background: #001033;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem;
  font-size: 0.9rem;
  margin-top: auto;
}
