/* =========================
   Global adjustments
   ========================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 16px; /* 1rem = 16px */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  font-family: 'Roboto', sans-serif;
  background-image: url(tealbk2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0e2a40;
}

/* Mobile background */
@media (max-width: 767px) {
  body {
    background-image: url(smaller-tealbk2.jpg);
  }
}
/* Mobile fix for left-shift issue */
@media (max-width: 767px) {
  body {
    background-attachment: scroll;
  }
}


/* =========================
   Typography
   ========================= */
h1 {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.3;
  color: #B4A32C;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #B4A32C;
}

/* Let text inherit color */
p,
blockquote,
pre {
  font-size: inherit;
  line-height: 1.6;
  color: inherit;
}


/* Links */
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #1d2128;
}

/* =========================
   Layout helpers
   ========================= */
.center {
  text-align: center;
}

.center img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   Blog container (DEFAULT GOLD)
   ========================= */
.blog-container {
  font-size: 1.2rem; /* ~19px */
  line-height: 1.75;
  max-width: 70ch;
  margin: 40px auto;
  padding: 24px;
  background-color: #31535d;
  color: #B4A32C;        /* gold text */
  text-align: left;
}


/* Mobile blog tweaks */
@media (max-width: 767px) {
  .blog-container {
    font-size: 1.1rem;
    }
}

/* =========================
   Optional text color variants
   ========================= */
.blog-container.light-text {
  color: #ffffff;
}

.blog-container.dark-text {
  color: #07090c;
}
