/* 1. Global Reset & Box Model */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Base Page Typography & Colors */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    padding: 20px;
}

/* 3. Typography Components */
h1, h2, h3 {
    margin-bottom: 15px;
    color: #111111;
}

p {
    margin-bottom: 20px;
}

/* 4. Hyperlinks */
a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    font-weight: bold;
}

hr {
  border: none;       /* Removes the default browser border */
  height: 2px;        /* Sets the thickness of your line */
  background: #5A5A5A;   /* Sets the color of your line */
}

.flex-container {
  display: flex;
  gap: 15px;
}

.flex-col {
  flex: 1; /* Forces both columns to share available space equally */
}

figcaption {
  text-align: center;
}