  /* Reset Styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: #333;
      background-image: url("orchestra.jpg");
  }

  /* Header Styles */
  header {
      background-color: #fff;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      opacity:0.6;
  }

  .blinker:hover {
      background-color: #cceeff;
      border-radius:5px;

}

  nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
  }

  .logo {
      font-size: 1.8rem;
      color: #333;
      text-decoration: none;
  }

  .nav-links a {
      margin-left: 2rem;
      text-decoration: none;
      color: #333;
      transition: all 0.3s ease;
  }

  .nav-links a:hover {
      color: #666;
  }

  /* Main Content Styles */
  main {
      max-width: 1200px;
      margin: 6rem auto 2rem;
      padding: 0 1rem;
  }

  /* Blog Post Styles */
  .blog-post {
      background-color: #fff;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-bottom: 2rem;
      padding: 2rem;
      opacity:0.7;
  }

  .blog-post2 {
      background-color: #010203;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-bottom: 2rem;
      padding: 2rem;
      opacity:0.7;
}

  .post-title {
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 1rem;
      text-decoration: none;
  }

  .linkhover {
      background-color: #fcff69; border-radius: 5px; color: black;
}

.linkhover:hover {
    background-color: red; border-radius: 5px; color: black;
}

  .post-date,
.author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tags a {
    color: #69f0ae;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 3px;
    padding: 0.25rem 0.5rem;
    margin-right: 0.5rem;
}

.post-excerpt {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Read More Button */
.read-more {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #666;
}

.biographyclass {
    background:/*
    /*
     * Created with https://www.css-gradient.com
     * Gradient link: https://www.css-gradient.com/?c1=ffffff&c2=b9b4d3&gt=l&gd=dtl
     */
    background: #FFFFFF;
    background: linear-gradient(315deg, #FFFFFF, #B9B4D3);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-links a {
        display: block;
        width: 100%;
        text-align: left;
        margin-bottom: 1rem;
    }

    main {
        padding-top: 12rem;

    }


}
