/* 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;
}
  
  
  /*slideshow settings*/ 
  .hcg-slider {
    width: auto;
    height: auto;
    text-align: center;
    font-family: "friendlyscribbles";
}
.hcg-slide-container {
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
   margin-bottom: 0px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.hcg-slider-track {
    height: 100%;
}
.hcg-slides {
    width: 100%;
    height: 100%;
    display: none;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: solid 1px #a0a0a0;
    box-sizing: border-box;
}
.hcg-slides img {
    max-width: 100%;
    max-height: 100%;
    min-height: 100px;
    display: inline-block;
}
.hcg-slide-text {
    color: #000000;
    font-size: 20px;
    padding: 3px 10px;
    position: absolute;
    bottom: -2px;
    left: 50%;
    text-align: center;
    text-shadow: 0.05em 0 white, 0 0.05em white, -0.05em 0 white, 0 -0.05em white, -0.05em -0.05em white, -0.05em 0.05em white, 0.05em -0.05em white, 0.05em 0.05em white;
    display: inline-block;
    transform: translate(-50%, -5px);
    text-transform: capitalize;
    font-weight: normal;
}
#hcg-slide-prev, #hcg-slide-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #fff;
    font-weight: normal;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    text-decoration: none;
    text-shadow: 1px 1px 5px #686868;
    z-index: 2;
}
#hcg-slide-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
#hcg-slide-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}
#hcg-slide-prev:hover, #hcg-slide-next:hover {
    background-color: #000c;
}
/************CSS Animation***********/

.animated {
    animation-name: fadeInRight;
    animation-duration: 1s;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.fadeInRight {
    animation-name: fadeInRight;
}
 
 
 /*Blog Page Section*/
 
 /*blog - left container*/
 .blogleft {
  display: flex;
  flex-direction: row;
  width: 300px;
  height: 600px;
  margin-right: 15px;
}
 
 
.blogright {
  display: flex;
  border: 2px solid blue;
  flex-direction: column;
  height: 500px;
  width: 800px;
  margin-top: 20px;
}
 
 
 
 
 
 