/* Teagan CSS */

html {
  height: 100%;
}

/* Body Reset */

body {
  overflow-x: hidden;
/* font-family: 'Montserrat', sans-serif; */
  font-family: 'Raleway', sans-serif;
  background-color: #eee;
  color: #444;
  height: 100%;
}


h1 {
  font-family: 'Boogaloo', cursive;
  font-size: 3.5em;
  padding: 4px 10px;
  margin: 0px 0px;
}

h2 {
  font-family: 'Boogaloo', cursive;
  font-size: 2.5em;
  padding: 4px 10px;
  margin: 0px 0px;
}

h3 {
  font-family: 'Boogaloo', cursive;
  font-size: 2em;
  padding: 4px 10px;
  margin: 0px 0px;
}



main {
  padding: 60px 0px;
}

/* Globals */

.wrapper {
  position: relative;
  min-height: 100%;
}

.navbar {
  background-color: violet;
  padding: 4px 0px;
}

.navbar a {
   font-weight: bold;
}

.foot {
  position: absolute;
  padding: 10px;
  background-color: violet;
  color: white;
  width: 100%;
  left: 0px;
  bottom: 0px;
}

.foot p {
  padding: 0px;
}

/* index.html styles */

.photo {
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  margin: 16px auto;
  box-shadow:0px 0px 10px 1px green;
}

.panel-title {
  display: inline-block;
  background-color: white;
  border-radius: 20px;
  margin: 10px auto;
}

.panel-title-orange {
  box-shadow: 0px 0px 10px 1px orange;
  /*border: 5px solid orange;*/
}

.panel-title-green {
  box-shadow: 0px 0px 10px 1px green;
}

.panel {
  background-color: white;
  padding: 5px;
  border-radius: 10px;
  margin: 10px 0px;
}

.panel-orange {
  box-shadow:0px 0px 2px 1px orange; 
}

.panel-blue {
  box-shadow:0px 0px 2px 1px blue;
}

.panel-green {
  box-shadow:0px 0px 2px 1px green;
}

.panel-pink {
  box-shadow:0px 0px 2px 1px violet; 
}

.highlight {
  padding: 5px;
  background: yellow;
  border-radius: 10px;
}

.name-pill {
  padding: 2px 10px;
  display: inline-block;
  background-color: cornflowerblue;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}

.date-pill {
  padding: 2px 10px;
  display: inline-block;
  background-color: cornflowerblue;
  color: #eee;
  border-radius: 10px;
  text-align: center;
}

.red-pill {
  padding: 0px 2px;
  display: inline-block;
  background-color: hotpink;
  color: #fff;
  border-radius: 10px;
  text-align: center;
}

.message-form {
  margin: 20px 0px;
  padding: 10px;
  background: honeydew;
  border-radius: 10px;
  box-shadow:0px 0px 2px 1px green;
}

.message {
  margin: 10px 0px;
}

.message p {
  margin-bottom: 0px;
  padding: 0px 5px;
}


.article-frame {
  background-color: azure;
  box-shadow:0px 0px 3px 1px blue;
  margin: 20px 0px;
}

.article-header {
  margin-top: 4px;
  background-color: white;
  box-sizing: border-box;
  border: 3px solid lavender;
}

.article-body {
  background-color: white;
  border-radius: 10px; 
  padding: 10px;
  border: 3px solid lavender;
}

.article-title {
  width: 70%;
  float: left;
}

.article-title h3 {
  margin-bottom: 0px;
}

.article-date {
  width: 30%;
  float: right;
  /*padding-right: 20px;*/
  text-align: right;
}

.article-image {
  width: 150px;
  float: right;
  margin-left: 10px;
  border-radius: 10px;
  box-shadow:0px 0px 5px 3px grey;
}

.text-convo { margin-top: 10px; }
.text-convo p { margin-bottom: 4px; } 


/*---Media Queries --*/
@media (max-width: 992px) {

}
@media (max-width: 768px) {
  
}
@media (max-width: 576px) {
  
}


/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/

/*-- Bootstrap Mobile Gutter Fix --*/
.row, .container-fluid {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/*-- Fixed Background Image --*/
.fixed-background {
  position: relative;
  width: 100%;
  z-index: 1000!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -999 !important;
}
.fixed {
  z-index: -999!important;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}