/* 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." */
   
   
   
/*font*/

body {
  background-color: black;
  color: white;
  font-family: 'friendlyscribbles';
  text-shadow: 0.05em 0 black, 0 0.05em black, -0.05em 0 black, 0 -0.05em black, -0.05em -0.05em black, -0.05em 0.05em black, 0.05em -0.05em black, 0.05em 0.05em black;
}
  
  
 /*Main Container Box*/
 .container {
  width: 600px;
  height: 800px;
  margin: 15px auto;
  margin-bottom: 3px;
  display: flex;
  display: relative;
  flex-direction: column;
 background: #D9EFFF;
  border: 1.5px double #303b6C;
  padding: 15px;
  overflow: hidden;
  text-wrap: wrap;
}
    
/*navigation tab - container*/
 .navcontainer {
  display: flex;
  margin-top: 4px;
  flex-direction: column;
  background-color: #5A98CC;
  border: 1px outset #386A9C;
  border-radius: 5px;
  Width: 470px;
  height: fit-content;
  margin-left: 80px;
}
    
    
  /*navigation tab - ul*/
   nav ul {
  display: flex;
  flex-wrap: wrap;
  text-wrap: wrap;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  gap: 1.3rem;
  font-family: "friendlyscribbles";
  list-style: none;
  list-style-image: none;
  margin-top: 2px;
  margin-left: 9px;
  margin-right: 9px;
  padding-inline-start: 0;
  margin-bottom: -10px;
  }
  
  /* navigation tab - font Hover*/

a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: skyblue;
}
  
  
  /* welcome page 1*/
  
  .welcome {
  display: flex;
  align-content: flex-start;
  width: 370px;
  Height: fit-content;
  text-wrap: wrap;
}
  
 
 /*Blog Page Section*/
 
 /*blog - left container*/
 .blogleft {
  display: flex;
  flex-direction: row;
  width: 300px;
  height: 600px;
  margin-right: 25px;
}
 
 
.blogright {
  display: flex;
  border: 2px solid blue;
  flex-direction: column;
  height: 500px;
  width: 800px;
  margin-top: 20px;
}
 
 
 
 
 
 