/* resets */

* {
    margin: 0;
    padding: 0;
    color: #fff;
  }
  
  .body {
    overflow-x: hidden;
    background-color: #000;
      animation: fadeIn;
    animation-duration: 3s;
  }
  /* giving the entire website a reveal class */
  
  .reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }
  
  /* Adding the scrollbar effects */
  /* Gradient Scrollbar */
  
  body::-webkit-scrollbar {
    width: 10px;
  }
  
  
  body::-webkit-scrollbar-track {
    background-clip: content-box;
    background:  linear-gradient(0deg, yellow 25%, pink 50%, lightSkyBlue 75%, blue 100%);
  }
  
  body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: transparent; /* opacity: 0; should do the thing either */
    box-shadow: 0px 0px 0px 100000vh black;
  }
  
  /* styling the nav */
  #navigation {
    background-color: #000;
    color: #fff;
    box-shadow: 0 0 20px #333;
  }
  #navigation a{
    border-radius: 10px;
    display: block;
    padding: 10px;
    color: #fff;
  } 

  
#projects-menu ul {
  list-style-type: none;
  background: #000;
  color: white;
}
  
  
    #navigation a:hover{
    background-color: rgba(255,255,255,0.02);
      color: #000;
    text-shadow: 0 0 2px blue, 0 0 6px lightSkyBlue, 0 0 12px #fff;
  }
  
  
  
  
  
  /*  modifying specific content*/
  
  
  .container {
    padding-top: 20px;
    padding-bottom: 20px;
    height: 100%;
    width: 100%;
  }
  
  /* header */
  #header {
     background: url("https://images.unsplash.com/photo-1603302576837-37561b2e2302?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1168&q=80");
    /*  adjusting background image  */
    background-size: cover;
    background-position: center;
    margin-top: 50px;
    padding-top: 100px;
    width: 100%;
    height: 200px;
    background-color: blue;
  }
  
  /* header keyframes */
  @keyframes fadeIn {
    0% {
      opacity: 0;
  }
    100% {
      opacity: 1;
    }}
  
  
  #title {
    color: white;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    border-radius: 10px;
  }
  
  p, ul {
    background-color: dark;
  }

  .article p {
    text-indent: 30px;
    margin-bottom: 50px;
  }

  .quote {
    margin-top: 20px;
    background-color: #111;
    box-shadow: 0 0 3px blue, 0 0 6px lightSkyBlue, 0 0 9px #fff;
    text-shadow: 0 0 1px blue, 0 0 2px lightSkyBlue, 0 0 3px #fff;
    border-radius: 10px;
    padding: 5px;
  }
  
  .article img {
    height: 300px;
    width: 250px;
    border-radius: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
  }



  .article h2 {
    margin-bottom: 10px;
    text-shadow: 0 0 3px blue, 0 0 6px lightSkyBlue, 0 0 9px #fff;
  }
  
  /* affiliate links */

  .affiliate-links button {
    background-color: #000;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 0 5px #333;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  transition: .4s ease-in-out all;
  }

  .affiliate-links button:hover {
    background-color: #fff;
  color: #000;
  border: 1px solid #000;
  text-shadow: 0 0 2px #000;
  box-shadow: 0 0 4px #fff, 0 0 6px lightSkyBlue, 0 0 8px pink, 0 0 12px #fff, 0 0 15px #333;
  }

/* related links */
.related-links button {
  background-color: #000;
color: #fff;
border: 1px solid #fff;
box-shadow: 0 0 5px #333;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
border-radius: 20px;
transition: .4s ease-in-out all;
}

.related-links button:hover {
  background-color: #fff;
color: #000;
border: 1px solid #000;
text-shadow: 0 0 2px #000;
box-shadow: 0 0 4px #fff, 0 0 6px lightSkyBlue, 0 0 8px pink, 0 0 12px #fff, 0 0 15px #333;
}
  


  /* styling the bottom links */
  
  #links {
    text-align: center;
    justify-content: center;
  }

  #links button {
    margin-top: 5px;
    width: 400px;
    background-color: #000;
color: #fff;
border: 1px solid #fff;
box-shadow: 0 0 5px #333;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
border-radius: 20px;
transition: .4s ease-in-out all;
}

  #links button:hover {
    background-color: #fff;
  color: #000;
  border: 1px solid #000;
  text-shadow: 0 0 2px #000;
  box-shadow: 0 0 4px #fff, 0 0 6px lightSkyBlue, 0 0 8px pink, 0 0 12px #fff, 0 0 15px #333;
}

  .related-posts {
    list-style-type: none;
  }

  #links h2 {
    text-align: center;
    text-shadow: 0 0 3px blue, 0 0 6px lightSkyBlue, 0 0 9px #fff;
  }

    /* styling the footer */
  
    #footer {
      background-color: #000;
      height: 100%;
      padding-bottom: 20px;
    }

   hr {
      height: 1px;
      background-color: rgba(0,0,0,0.5);
      border-color: white;
      box-shadow: 0 0 5px lightSkyBlue, 0 0 10px pink;
    }
    
    
    
    
    /* copyright link */
    #copyright {
      color: #fff;
      text-shadow: 0 0 2px #fff, 0 0 4px lightSkyBlue, 0 0 6px pink;
    }
    /* giving copyright hover effects */
    #copyright:hover {
      color: #000;
      text-shadow: 0 0 2px blue, 0 0 4px lightSkyBlue, 0 0 6px #fff;
    }