/* styles.css */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);/*webkit模糊实现*/
    color: white;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.3s;
  }
  
  .logo img {
    height: 50px;
    margin: 0 5px;

  }
  