:root {
  --primary-color: #facd01;
  --text-dark: #000000;
  --text-light: #737373;
  --extra-light: #f4f6f6;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--extra-light);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: var(--primary-color);
  width: 100%;
  max-width: 1200px;
  min-height: 100vh;
  padding: 10px;
  gap: 50px;
}


.image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.text {
  font-family: sans-serif;
  color: #333;
  line-height: 1.6;
  text-align: center;
  padding: 25px;
}

.text h1{
  font-size: 2.5rem;
}

.text p{
  font-size: 1.5rem;
}