/* 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." */
  
/*GEN*/
.content {
  max-width: 900px;
  margin: auto;
  padding: 10px;
}
body {
  background-image: url(stars.png);
  background-size: cover;
  color: #D9D9D9;
  font-family: Courier New, monospace;
  overflow-wrap: break-word;
}
h1{
    font-family: Garamond, serif;
}
h2{
    font-family: Garamond, serif;
    text-align: center;
}
h3{
  font-family: Garamond, serif;
}
a{
  color:#D9D9D9;
}
a:hover{
  background-color: rgba(0, 0, 0, .8);
}
a:visited{
  color: #ABABAB
}
a:active{
  color: #ABABAB
}
.break{
  text-align: center;
}
/*LAYOUTTTTT*/
.column {
  float: left;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.column.left{
  width: 15%;
}
.column.center{
   
   width: 65%;
}
.column.right{
  width:20%;
}
.column.blog{
  width:85%;
}


/*NAVBAR*/
 #navttl{
  font-family: Garamond, serif;
  color: black;
  font-variant: small-caps;
  float: left;
  text-align: center;
  padding: 10px;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: #D9D9D9;
  border: 5px groove black;

}
/* Style the topnav links */
.navbar a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
/* Change color on hover */
.navbar a:hover {
  background-color: rgba(0, 0, 0, .5);
  color: white;
}


/*HEADER*/
.header{
  background: #D9D9D9;
  text-align: center;
  padding: 20px;
  border: 5px groove black;
  color: black;
  margin: 0;
}
/*FOOTER*/
.foot{
  background: #D9D9D9;
  text-align: center;
  padding: 20px;
  border: 5px groove black;
  color: black;
  margin: 0;
}


/*STYLES*/
.title{
  border: 5px groove black;
  background: #1F1F1F;
  padding: 10px;
  margin: 0;
}
#basic{
  float: left;
}
.soc{
  border: 5px groove black;
  background: #1F1F1F;
  padding: 10px;
  margin: 0;
}
.about{
  border: 5px groove black;
  background: #1F1F1F;
  margin: 0;
  padding:10px;
}
.log{
  border: 5px groove black;
  background: #1F1F1F;
  padding: 10px;
}
#logtxt{
  overflow: scroll;
  border: 5px dashed #969696;
  background: #1F1F1F;
  padding: 10px;
  height: 100px;
}

.box{
  border: 5px groove black;
  background: #1F1F1F;
}
.latestb{
  overflow: scroll;
  border: 5px dashed #969696;
  background: #1F1F1F;
  padding: 10px;
  height: 300px;
  margin:15px;
}
.archb{
  overflow: scroll;
  border: 5px dashed #969696;
  padding: 10px;
  margin:15px;
}
.essays{
  border: 5px groove black;
  background: #1F1F1F;
  overflow: scroll;
  padding: 10px;
  height: 372px;
}
.wrting{
  border: 5px groove black;
  background: #1F1F1F;
  margin: 0;
  padding:10px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}



/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}