/* 1. RESET & VARIABLES */
:root {
  --primary-color: #333;
  --accent-color: #ff5722;
}

* {
  box-sizing: border-box; /* Includes padding in element width */
  margin: 0;
  padding: 0;
}

/* 2. BASE STYLES */
body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 2rem;
  text-align: center;
  background-position: center;
  background-size: auto;
}

h1, h2, h3 {
    font-weight: normal;
}
p {
    font-weight: normal;
}
footer {
    font-size: 1rem;
      -webkit-text-stroke: 0px white;

}
/* 3. LAYOUT STRUCTURE (Flexbox/Grid) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 4. COMPONENTS */
.btn-primary {
  background-color: var(--accent-color);
  border: none;
  cursor: pointer;
}

/* 5. MEDIA QUERIES (Mobile responsiveness) */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
  }
}