body {
    font-family: Arial, sans-serif;
    background-color: #1f1f1f;
    margin: 0;
    padding: 0;
    color: #fff;
  }
  
  /* This is the required project styling. Will contain essential CSS styles like:
     * Flex property
     * Grid layout
     * Cards and sections
  */
  
  @import url(https://fonts.googleapis.com/css?family=Raleway:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
  
  /* variables */
  :root {
    /* Colors */
    --primary-color: #ffcd42;
    --secondary-color: #ffd35c;
    --bg-primary: #ffffff;
    --text-color: #222222;
    --text-color-two: #ffffff;
    --bg-secondary: #000000;
    --card-background: #f4f4f4;
    --bg-secondary-two: #111111;
    
  
  
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  
    /* Font Weight */
    --weight-small: 400;
    --weight-semibold: 600;
    --weight-bold: 800;
  
    /* Max width */
    --width-small: 600px;
    --width-medium: 1100px;
    --width-large: 1300px;
  }
  
  [data-theme="dark"] {
    --primary-color: #ffcd42;
    --secondary-color: #ffd35c;
    --bg-primary: #000000;
    --text-color: #ffffff;
    --text-color-two: #222222;
    --bg-secondary: #ffffff;
    --card-background: #111111;
    --bg-secondary-two: #f4f4f4;
    --shadow: 0 2px 10px rgba(95, 95, 95, 0.2);
  
  
  }
  
  html {
    font-size: 100%;
    scroll-behavior: smooth;
  }
  
  /* Reset default styling */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: var(--text-color);
  }
  
  /* Main styling */
  body {
    background: var(--bg-primary);
    color: var(--text-color);
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--bg-primary);
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    height: 80px;
    width: 100%;
  }
  
  .navbar .nav-menu {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
  }
  
  .navbar .nav-link {
    margin: 0 1rem;
    font-size: 0.8rem;
    font-weight: var(--weight-semibold);
  }
  
  .navbar #logo img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    object-fit: cover;
    border: 5px solid #3b3d4e93;
    cursor: pointer;
  }
  
  .navbar .btn {
    margin-right: 1.5rem;
  }
  
  .fas.fa-arrow-right {
    margin-left: 0.5rem;
    font-size: 0.9rem;
  }
  
  /* hamburger */
  .hamburger {
    margin-bottom: 0.1rem;
    display: none;
  }
  
  .bar {
    display: block;
    width: 23px;
    height: 3px;
    margin: 4px auto;
    transition: all 0.3s ease-in-out;
    border-radius: 30px;
    background-color: var(--bg-secondary);
  }
  
  /* Hero section */
  #hero {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .profile-image {
    width: 150px;
    border-radius: 50%;
    animation: bounce 1s infinite alternate;
  }
  
  @keyframes bounce {
    from {
      transform: translateY(0px);
    }
  
    to {
      transform: translateY(-10px);
    }
  }
  
  .division {
    width: 100%;
    height: 2px;
    background-color: var(--card-background);
    margin: 5.5rem 0;
  }
  /* Projects */
  #projects {
    display: flex;
    flex-direction: column;
    margin: 2rem auto 5rem;
  }
  
  #projects .btn {
    align-self: center;
    margin: 2rem 0;
  }
  
  .project {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    grid-gap: 0.9rem;
  }
  
  .card .project-bio p {
    font-size: 0.83rem;
  }
  
  .card .project-bio h3 {
    font-size: 0.9rem;
  }
  
  .project-info {
    display: flex;
    justify-content: space-between;
    opacity: 0;
    position: relative;
    transition: 0.5s ease-in-out;
  }
  
  .project-bio {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    top: 160px;
    left: 10px;
  }
    
/*  footer   */
footer {
  background-color: #222;
  color: #fff;
  font-size: 14px;
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 999;
}

footer p {
  margin: 10px 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida  Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
footer .fa-heart{
  color: red;
}
footer .fa-dev{
  color: #fff;
}
footer .fa-twitter-square{
color:#1da0f1;
}
footer .fa-instagram{
color: #f0007c;
}
fotter .fa-linkedin{
color:#0073b1;
}
footer .fa-codepen{
color:#fff
}
footer a {
  color: #3c97bf;
  text-decoration: none;
margin-right:5px;
}
.youtubeBtn{
  position: fixed;
  left: 50%;
transform:translatex(-50%);
  bottom: 45px;
  cursor: pointer;
  transition: all .3s;
  vertical-align: middle;
  text-align: center;
  display: inline-block;
}
.youtubeBtn i{
 font-size:20px;
float:left;
}
.youtubeBtn a{
  color:#ff0000;
  animation: youtubeAnim 1000ms linear infinite;
float:right;
}
.youtubeBtn a:hover{
color:#c9110f;
transition:all .3s ease-in-out;
text-shadow: none;
}
.youtubeBtn i:active{
transform:scale(.9);
transition:all .3s ease-in-out;
}
.youtubeBtn span{
  font-family: 'Lato';
  font-weight: bold;
  color: #000;
  display: block;
  font-size: 12px;
  float: right;
  line-height: 20px;
  padding-left: 5px;

}

@keyframes youtubeAnim{
0%,100%{
  color:#c9110f;
}
50%{
  color:#ff0000;
}
}
/* footer  */

  
  /* Responsiveness */
  
  @media (max-width: 1000px) {
    .project {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
  }
  
  @media (max-width: 670px) {
    .navbar .nav-menu {
      position: fixed;
      right: -100vw;
      top: 4.5rem;
      flex-direction: column;
      width: calc(80% - 10px);
      transition: 0.3s;
      box-shadow: var(--shadow);
      padding: 2rem;
      border-radius: 5px;
      align-items: flex-start;
    }
  
    .navbar .btn {
      margin: 0;
      margin-top: 1rem;
    }
  
    .nav-menu.active {
      right: 20px;
    }
  
    .nav-menu .nav-link {
      font-size: 0.9rem;
      margin: 0 0.2rem;
    }
  
    .nav-menu li {
      margin-bottom: 0.5rem;
      width: 100%;
    }
  
    .nav-menu .btn {
      width: 100%;
      text-align: center;
      margin-top: 0.5rem;
    }
  
    .hamburger {
      display: block;
      cursor: pointer;
      padding: 0.2rem 0.4rem;
    }
  
    .hamburger.active {
      border: 1px dotted gray;
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }
  
  @media (max-width: 600px) {
    .project {
      display: grid;
      grid-template-columns: 1fr;
    }
  
    .header-container .btn {
      border-radius: 5px;
      width: 80%;
    }
  }
  
  
  /* Responsive nav bar */
  
  @media only screen and (max-width: 630px) {
    header nav {
        display: flex;
        flex-direction: column;
    }
    header nav .header_logo {
        margin-bottom: 20px;
    }
  }
  
  @media only screen and (max-width: 320px) {
    header nav .header_links ul {
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
  }
    h1 {
      text-align: center;
      margin: 20px 0;
    }
    
    .filters {
      text-align: center;
      margin-bottom: 20px;
    }
    
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      grid-gap: 20px;
      max-width: 800px;
      margin: 0 auto;
      padding: 10px;
    }
    
    .gallery-item {
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      max-width: 500px;
      padding: 10px;
      transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
    }
    
    .gallery-item:hover {
      transform: scale(1.05);
    }
    
    .gallery-item img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 50px rgba(227, 227, 227, 0.2);
      transition: transform 0.3s ease;
    }
    
  
    
    .gallery-item:hover .wallpaper-details {
      opacity: 1;
    }
  
  
  
  
  
    
    
    
    .developer-info p {
      margin: 5px 0;
    }
    
    .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
    }
    
    .modal-content {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
    }
    
    .modal-content img {
      max-width: 80%;
      max-height: 80%;
    }
    
    .close {
      position: absolute;
      top: 10px;
      right: 10px;
      color: #fff;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
    }
    
    @keyframes fade-in {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }
    
    .download-btn {
      display: inline-block;
      padding: 8px 16px;
      background-color: #4CAF50;
      color: #fff;
      text-decoration: none;
      border-radius: 400px;
      transition: background-color 0.3s ease;
    }
    
    .download-btn:hover {
      background-color: #45a049;
    }
    
    .preview-button {
      display: inline-block;
      padding: 10px 16px;
      background-color: #007bff;
      color: #fff;
      text-decoration: none;
      border-radius: 100px;
      transition: background-color 0.3s ease;
    }
    
    .preview-button:hover {
      background-color: #0056b3;
    }
    
    #category-select,
    #search-input {
      padding: 5px;
      font-size: 20px;
      border-radius: 10px;
      border: 2px solid #072fcf;
      margin-right: 10px;
      transition: border-color 0.3s ease;
    }
    
    #category-select:focus,
    #search-input:focus {
      outline: none;
      border-color: #007bff;
    }
    
    #search-button {
      width: 40px;
      height: 40px;
      border: 1px solid #00B4CC;
      background: #1800cc;
      text-align: center;
      color: #fff;
      border-radius:  15px 15px ;
      cursor: pointer;
      font-size: 20px;
    }
    
    #search-button:hover {
      background-color: #0056b3;
    }
    
    .author a {
      color: #de2500;
      text-decoration: underline;
    }
    
    .author a:hover {
      color: #007bff;
    }
    
  
  
  
  
  
  
  
  
  
    /* Important styles */
  #toggle {
    display: block;
    width: 28px;
    height: 30px;
    margin: 30px auto 10px;
  }
  
  #toggle span:after,
  #toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -9px;
  }
  #toggle span:after{
    top: 9px;
  }
  #toggle span {
    position: relative;
    display: block;
  }
  
  #toggle span,
  #toggle span:after,
  #toggle span:before {
    width: 100%;
    height: 5px;
    background-color: #888;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
  }
  