/* 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: #131a2e;
  background-image: url('../../bricktexture.png');
	background-position: top;
  font-size: 18px;
  font-family: bahnschrift, sans-serif;
  margin: 0;
  
}

.topbuttons {
  height: 50px;
  margin-top: 40px;
  margin-right: 120px;
  font-size:xx-large;
 text-align: right;
 padding: auto;

}

.logo {
  width: fit-content;
 height: fit-content;
 display:block;
 margin: auto;
  margin-bottom: -100px;
  text-align: center;
margin-top: -200px;

}

#tagList{
  ul{list-style-type:none;
 margin: 0px;
 padding: 0px;
overflow: hidden;}
li{float: left;
padding: 10px;}
li a{
  font-size: larger;
  font-weight: 700;
}
}

.mnav{display: none;}

nav {
  ul{
 margin-top: 1px;
 margin: 20px;
  padding: 15px;
  list-style-type:none;
  background-color: #2b3d6e;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 1em;
  box-shadow: 0px 0px 10px 1px hotpink;}
}

li {
  flex: auto;
}

nav a {
  font-size: 1.2em;
  padding: 30px;
color: hotpink;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

hr {
  border: solid hotpink;
  border-width: 2px 0 0 0;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}
a{
  text-decoration: none;
  color: hotpink;
}
a:hover { 
  color:rgb(163, 113, 239);
}

h1, h2, h3, h4, h5 {
  font-family: Tahoma, Geneva, sans-serif;
  color: hotpink;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  
  margin: 3em auto;
  margin-top: 30px;
  width: 90%;
	max-width: 700px;
	background-color: #2b3d6e;
  color: #d8dad3;
  border-radius: 1em;
  box-shadow: 0px 0px 15px 1px hotpink;
}

#content {
  padding: 10px 5% 20px 5%;
}


/*HEADER STYLE*/
#header {
  background-color: #2b3d6e;
  padding: 0 5%;
  border-color: hotpink;
  border-width: 0 0 4px 0;
  border-top-right-radius: 1em;
  border-top-left-radius: 1em ;
}
#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  color: white;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}

footer {
  display: flex;
  
  justify-content: center;
  text-align: center;
  padding: 10px;
  background-color: #2b3d6e;
  color: #D8DAD3;
  margin-top: 5vh;
  font-size: small;

}

@media (max-width:800px){

  .logo {
 display:flex;
 justify-content:center;
 margin: auto;
  margin-bottom: -120px;
margin-top: -80px;

}

.nav{
  display: none;
}

  /* button */
  .topbuttons{
    display: none;
  }
.mnav{
  display: flex;
  margin-top: 60px;
  width: 90%;
  margin: auto;
  margin-top: 70px;
  height: fit-content;
  flex-direction: column;
  justify-content: center;
  background-color: #2b3d6e;
  border-radius: 1em;
  box-shadow: 0px 0px 10px 1px hotpink;
}

.collapsible {
  display: block;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: xx-large;
    height: auto;
    background: none;
    border: none;
    color: hotpink;
    cursor: pointer;
    
  }

  .content
  {display: none;
    height: auto;
    margin: auto;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
    }



  .active, .collapsible:hover {
    background-color: 163, 113, 239;
  }

i:hover,i:focus{
  color: rgb(163, 113, 239) 00}


#container {
  
  margin: 3em auto;
  margin-top:50px;
  width: 90%;
}}