html {
  font-size: 16px;
}

body {
  background-color: white;
}

#banner {
  background-size: cover;
  background-position: right;
  height: 400px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: left;
  align-items: top;
  text-align: center;
}

#banner h1 {
  font-family: 'Segoe UI Semibold', sans-serif;
  font-weight: 400;
  font-size: 5rem;
  color: white;
  margin-left: 10%;
  text-shadow: 2px 2px 5px #000000;
}

#banner-small {
  background-size: cover;
  background-position: right;
  height: 200px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: left;
  align-items: top;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
#banner-small h1 {
  font-family: 'Segoe UI Semibold', sans-serif;
  font-weight: 200;
  font-size: 3.5rem;
  color: white;
  margin-left: 10%;
  text-shadow: 2px 2px 5px #000000;
}

#banner-tiny {
  background-size: cover;
  background-position: right;
  height: 100px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: left;
  align-items: top;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
#banner-tiny h1 {
  font-family: 'Segoe UI Semibold', sans-serif;
  font-weight: 200;
  font-size: 3.5rem;
  color: white;
  margin-left: 10%;
  text-shadow: 2px 2px 5px #000000;
}


#page-content {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#page-content .post {
  margin-bottom: 20px;
  margin-top: 10px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: left;
  font-family: 'Segoe UI Semibold', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  text-align: left;
  line-height: 1.4;
  color: #222222;
}

#text-and-image-container{
  content: "";
  clear: both;
  display: table;
  width: 90%;
  margin-left: 10%;
  margin-top: 5px;
  margin-bottom: 5px;
}

#post-with-image {
  font-family: 'Segoe UI Semibold', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  text-align: left;
  line-height: 1.4;
  vertical-align: top;
  color: #222222;
}


#image-inline {
  float: right;
  vertical-align: top;
  padding: 10px;
  width: 50%;
  max-width: 500px;
}

img {
    width: 100%;
}

.btn {
	padding: 6px 12px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Segoe UI Semibold', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5em;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #ffffff;
  background-color: #00a000;
  border-color: #008000;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover,
.btn:focus,
.btn:active{
  color: #000000;
  background-color: #339966;
  border-color: #001000;
}

