/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: rgb(91, 206, 250);
  background-image: /*url('./images/bg-2.png');*/ url('./images/stars.gif');
  background-repeat:repeat;
  image-rendering: crisp-edges;
  /*background-size:100%;
  background-repeat:repeat-y;*/
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
  font-size: 20px;
}

a {
  color:#FDD;
  font-weight:bolder;
}

.navcontainer {
  display:block;
  float:left;
  margin:auto;
  width: 16%;
  min-width:250px;
  margin-left:5%;
}

.nav {
  display:block;
  border:10px solid transparent;
  border-image: url('./images/border.png') 2 round;
  border-radius:10px;
  margin-left:5%;
  margin-top:20px;
  background-color:rgba(130, 200, 255, 0.7);
  text-align:left;
  padding-top:10px;
  padding-bottom:10px;
}

a:hover{
  text-decoration: underline;
}

.nav a{
  align-self:left;
  margin-left:30px;
  cursor:pointer;
}

.nav img {
  width:100%;
}

.navbutton{
  border-style:solid;
  border-color:white;
  border-radius:2px;
  background:#88F;
  padding:2px 5px;
  text-align:center;
  text-decoration:none;
  display:inline-block;
  margin:3px 2px;
  cursor:pointer;
}

.main {
  float:left;
  margin-left:5px;
  width:70%;
  margin-top:20px;  
  padding-left:10px;
  padding-right:10px;
}

.content {
  border:10px solid transparent;
  border-image: url('./images/border.png') 2 round;
  border-radius:10px;
  background-color:rgba(130, 200, 255, 0.7);
  display:block;
  margin-bottom:10px;
  width:100%;
}

.center {
  text-align:center;
}

.banner {
  width:70%;
  max-width:960px;
  margin:auto;
  display:flex;
  float:top;
}

.content img{
  max-width:50%;
}

.timestamp{
  font-family:'lucidia console';
  font-weight:bold;
  font-size:150%;
}

.journal{
  text-align:left;
}

.galleryimage {
  width:auto;
  height:auto;
  min-width:100px;
  max-width:200px;
  max-height:200px;
  display:inline;
  padding:3px;
}

@media only screen and (max-width: 800px){
  [class*="galleryimage"]{
    min-width:200px;
    max-height:300px;
  }
  [class*="main"]{
    margin:auto;
    margin-left:0px;
    margin-right:0px;
    margin-top:5px;
    padding:0px;
    width:100%;
  }
  [class*="content"]{
    margin-left:0px;
    margin-right:0px;
    width:95%;
  }
  [class*="navcontainer"]{
    margin:auto;
    padding:0px;
    width:100%
  }
  [class*="nav"]{
    padding:0px;
    margin-top:5px; 
    margin-left:0px;
  }
}