    @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }


    body {
      margin: 0;
    }

    .header {
      top: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: blue;
      border-bottom: solid 2px #fff;
      padding: 10px;
      position: fixed;
      height:30px;
      width: 100%;
    }


    .menu-list.visible {
    display: block;
}

    .menu-list {
      display: none;
      position: fixed;
      top: 60px;
      left: 0;
      height: 100%;
      width: 235px;
      background-color: rgb(0, 0, 167);
      background-repeat: repeat-y;
      border:solid 2px #fff;
      border-radius: 12px;
      z-index: 1;
    }

    .menu-button {
      cursor: pointer;
      color: #fff;
    }

    .menu-heading {
      margin-top: 2S0px;
      margin-left: 10px;
      color: yellow;
    }

    .site-name {
      font-weight: bold;
      color: #fff; /* White */
    }
  
    .menu-list ul {
      list-style: none;
      padding: 0;
    }

    .menu-list li {
      display: flex;
      align-items: center;
    }

    .menu-list li a {
      display: flex;
      align-items: center;
      text-decoration: none;
      font-weight: bold;
      color: #fff;
      margin-left: 15px;
      padding: 10px;
      transition: all 0.3s ease;
    }

    .menu-list li a:hover {
      background-color: rgb(0, 154, 0);
      color: #fff;
      border: solid 2px white;
      border-radius: 12px;
      width: 75%;
      margin-left: 15px;
      transform: scale(1.1);
    }

    .menu-list li a i {
      margin-right: 10px;
    }

    .menu-list .sub-menu {
      display: none;
      background-color: #34d0db;
      color: #fff;
      padding: 10px;
    }

    .menu-list .sub-menu li {
      margin: 5px 0;
    }

    .menu-list .sub-menu li a {
      color: #333;
      transition: all 0.3s ease;
    }

    .menu-list .sub-menu li a:hover {
      color: rgb(8, 217, 8);
      color: #fff;
      border-radius: 10;
    }

    .logo{
    height: 50px;
    width: 50px;
    border-radius: 50px;
    margin-right: 35px;
  }

  .prof{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 20%;
  }
     /* End Of My Sure CSS */

     .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    position: fixed;
  }

  .ttle{
    width: 75%;
  }

  .header .site-name {
    font-size: 24px;
  }

  .header .settings-icon {
    color: #fff;
    font-size: 24px;
    animation: rotate 2s infinite linear;
    margin-right: 10px;
  }

  .header .menu-icon {
    font-size: 24px;
    margin-right: 10px;
  }