/* 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." */
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre&display=swap" rel="stylesheet');


.download_links:hover{
	animation: an_shake .1s linear infinite;
}

	/*shake*/
@keyframes an_shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
  font-size: 18px;
  font-family: 'Roboto',sans-serif;
  font-weight: 300;
  margin: 0;
  background-color: #3d405b;
  font-style: 
}

a {
  color: #3d405b;
  font-family: 'Roboto';
  text-decoration: none;
}

p {
  line-height: 1.6em;
  text-align: justify;
  text-justify: inter-word;
}
#content li {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

video{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*This makes images shrink when their container becomes too small (responsive design)*/
img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.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;
}
ul{
	list-style-type: square;
}
a:hover { 
  /*animation: an_shake .1s linear infinite;*/
  background-color: #3d405b;
  text-decoration: none;
  color:#f4f1de;
  padding: 1px 5px;
  outline-color: #f4f1de;
  outline-width: 1px;
  outline-style: dashed;
}

.box{

  height: 200px;
  
  width: 50px;
  
  }

/*#CONTAINER is the rectangle that has contains everything but the background!*/
#container {
  margin: 3em auto;
  margin-top: 0;
  width: 90%;
  max-width: 700px;
  color: #3d405b; 
  background-color: #f2cc8f;
}

#content {
  padding: 10px 5% 20px 5%;
}

#construction {
  padding-top: 5%;
  padding-bottom: 5%;
  align-content: center;
  text-align: center;
}

/*HEADER STYLE*/
#header {
}
#header ul {
  list-style-type: none;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-table;
  margin-right: 1.5em;
  margin-bottom: 1em;
  margin-top: 1em;
}
#header li a {
  color: #dbdb92;
  text-decoration: none;
  background-color: inherit;
  padding: 1px 5px;

}
#header li a:hover {
  animation: an_shake .1s linear infinite;
  color:#f4f1de;
  background-color: #3d405b;
  outline-width: 1px;
  padding: 1px 5px;

}

/*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;
}

/* Tooltip container */
.tooltip {
  /*position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;  If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #3d405b;
  color: #f4f1de;
  text-align: left;
  padding: 5px;
  box-shadow: 10px 10px #f4f1de;
  outline-color: #f4f1de;
  outline-style: solid;
  outline-width: 1px;
  outline-offset: 0;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {

  visibility: visible;
}
.tooltip:hover {
  border-bottom: 1px dotted #dbdb24;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}
textarea {
  width:60%;
  resize: vertical;
  padding:5px;
  border:0;
  height:100px;
  box-shadow: 5px 5px #2424ff;
  font-family: 'Roboto';
  outline-color: #b62424;
  outline-style: solid;
  outline-width: 1px;
  color: #b62424; 
}

input{
	font-family: 'Roboto';
	  border:0;
	box-shadow: 5px 5px #b62424;
	  outline-color: #b62424;
  outline-style: solid;
  outline-width: 1px;
  color: #b62424; 
}
button{
	font-family: 'Roboto';
	  border:0;
	box-shadow: 5px 5px #b62424;
	  outline-color: #b62424;
  outline-style: solid;
  outline-width: 1px;
  color: #b62424; 
}


/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}

/* Dropdown Button */
.dropbtn {
  background-color: #010101;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #010101;
  min-width: 160px;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #dbdb92;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color:#2424ff;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}