/* 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 {
  color: black;
  font-family: Arial;
  max-width: 1220px; /* the centering spell... */
  margin: 0 auto;
  background: linear-gradient(#FFFFFF, #F2F2F2, #E6E6E6, #C2C2C2); /* the background cool gradient*/
  min-height: 100vh;
}

summary h1 {
  display: inline; /* keeps the title text aligned with the disclosure triangle */
}

.diary-body {
  background-color: #F0FAFA;
  color: black;
  border: 1px solid black;
  border-radius: 30px;
  padding: 7px;
  margin: 5px 5px;
}
.diary-title {
  background-color: #FFF5FC;
  color: #002729;
  padding: 10px;
  box-shadow: 0 4px 8px black; /*the shadow around the box*/
}

a:hover {
  background-color: gold;
}

.navigation-bar {
/*  background-color: white; */
/*  position: fixed;      */
/*  top: 10px;              */
  margin-top: 3px; 
  padding: 3px;          
  height: 50px;           
  border: 2px solid black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.nav-home {
   flex: 1;
   text-align: center;
   padding: 10px;
   background-color: #e0e0e0;
   font-size: 1.3em;
}

.nav-blog {
   flex: 1;
   text-align: center;
   padding: 10px;
   background-color: #e0e0e0;
   font-size: 1.3em;
   
}

.nav-music {
   flex: 1;
   text-align: center;
   padding: 10px;
   background-color: #e0e0e0;
   font-size: 1.3em;
}

.nav-fashion {
   flex: 1;
   text-align: center;
   padding: 10px;
   background-color: #e0e0e0;
   font-size: 1.3em;
}

.nav-mixed-media {
   flex: 1;
   text-align: center;
   padding: 10px;
   background-color: #e0e0e0;
   font-size: 1.3em;
}

.nav-systems {
   flex: 1;
   text-align: center;
   padding: 10px;
   background-color: #e0e0e0;
   font-size: 1.3em;
}

.main-content {
   background-color: white;
   padding:10px;
   margin-top: 10px;

}

.bio {
   display: flex;
   flex-direction: row;
   width: 100%;
   
}
.bio-text {
   flex: 1;
   order: 1;
}
.bio-pic {
   flex: 1;
   order: 2;
}


