:root {
  --tclug-blue: #2a4cab;
}

*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

header {
  align-items: center;
  background: var(--tclug-blue);
  color: white;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.5rem 2rem;

  & a {
    color: inherit;
  }

  & #siteName {
    flex-grow: 1;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.1;
    text-decoration: none;
  }

  & ul {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;

    & a {
      display: inline-block;
      padding: 0.5rem;
    }
  }
}

main {
  padding: 1rem 2rem;
}

.content {
  margin-inline: auto;
  max-inline-size: 1000px;
}

.hero {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-block-end: 1rem;

  & img {
    display: inline-block;
    max-inline-size: 40%;
    margin-inline-end: 1rem;
  }

  & h1 {
    font-size: 2.75rem;
  }
}

.bang {
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
}
