/*my style.css */

:root {
  --bg: #f9f9f9;
  --accent: #222;
  --text: #333;
  --light-text: #777;
}

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

body {
  font-family: sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 1rem;
}

.container {
  max-width: 800px;
  margin: auto;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

header p {
  color: var(--light-text);
  font-size: 0.95rem;
}

section {
  margin-bottom: 2rem;
}

h2 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: var(--accent);
}

ul {
  list-style: none;
}

li {
  margin-bottom: 0.5rem;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--light-text);
  margin-top: 3rem;
}

@media (min-width: 600px) {
  header h1 {
    font-size: 2.5rem;
  }

  .two-cols {
    display: flex;
    gap: 2rem;
  }

  .two-cols > div {
    flex: 1;
  }
}
