/* 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: white;
  color: black;
  text-align: center;
  font-family: monarcha,serif;
  font-weight: 400;
  font-style: normal;
}

a:link {
  color:black;
}

a:visited {
 color:black; 
}

a:hover {
  color:blue;
}
.bg {
  position: fixed; 
  top: 0; 
  left: 0; 
	
  /* Preserve aspet ratio */
  min-width: 100%;
  min-height: 100%;
  }

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.main {
  display: block;
  margin: auto;
  width: 70%;
  padding: 10px 10px 10px 10px;
  border-radius: 25px;
  background: white;
  opacity: 0.7;
}

.bio {
  display: block;
  margin: auto;
  width: 450px;
  padding: 10px 10px 10px 10px;
  border: dotted;
  background: white;
  opacity: 0.7;
}

.header {

  width: fit-content;
  height: 30px;
  line-height: 1px;
  margin: auto;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom:2px;
  background-color: #F9F9F9;
  font-family: monarcha, serif;
  font-weight: 700;
  font-style: normal;
  border: solid;
  text-align: center;
}

.thoughts {
  display: block;
  margin: auto;
  width: 300px;
  padding: 1px 1px 1px 1px;
  border: dotted;
  background: white;
  opacity: 0.8;
}

.thoughts a:link {
  color:black;
  text-decoration: none;
}

.thoughts a:visited {
  color:black;
  text-decoration: none;
}

.thoughts a:hover {
  color:gray;
  
}

.rightimg {
  position: absolute;
    right: 230px;
    top:140px;
    margin: 1px;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;    /* Footer height */
}

#footer {
width: 100%;
height: 28px;
position: absolute;
bottom: 0px; 
left: 0px; 
text-align: center; 
 padding-bottom: 10px;
}


#footer a:link {
  color:black;
  opacity:0.3;

}

#footer a:visited {
  color:black;
  opacity:0.2;
}

#footer a:hover {
  color:white;
  text-shadow:1px 1px 10px lightblue, 1px 1px 20px blue;  
  
}