      .header {
        height: 80px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        justify-content: space-between;
        background-color: rgb(225, 225, 225);
        position: fixed;
        top: 20px;
        left: 50px;
        right: 50px;
        z-index: 100;
      }

      .left-section {
        width: 250px;
        display: flex;
        flex-direction: row;
        align-items: center;
      }

      .plane-icon {
        height: 45px;
        padding: 0px 12px 0px 12px;
      }

      .author-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .author-name {
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 5px;
      }

      .author-designation {
        font-size: 13px;
      }

      .right-section {
        width: 700px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-right: 100px;
      }

      .menu {
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 5px 0px 5px;
        font-size: 20px;
        font-weight: 400;
        transition: 0.25s ease;
        margin: 0 10px 0 10px;
        text-align: center;
      }

      .menu:hover {
        cursor: pointer;
        font-size: 24px;
      }

      



      
      @media (max-width: 600px) {
        .header {
            height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            background-color: rgb(225, 225, 225);
            position: fixed;
            top: 20px;
            left: 20px;
            right: 20px;
            z-index: 100;
        }

        .left-section {
            margin-top: 5px;
            display: flex;
            flex-direction: row;
            justify-content:center;
            align-items: center;
        }

        .plane-icon {
            height: 45px;
            padding: 0px 12px 0px 12px;
        }

        .author-details {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-name {
            font-size: 20px;
            font-weight: 600;
            padding-bottom: 5px;
        }

        .author-designation {
            font-size: 13px;
        }

        .right-section {
            width: 320px;
            padding: 0px 0px 0px 0px;
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            justify-content: space-around;
        }

        .menu {
            padding: 0px 0px 0px 0px;
            font-size: 15px;
            /* font-weight: 500; */
            /* transition: 0.25s; */
            margin: 0px 4px 0px 4px;
            text-align: center;
            /* background-color: lightblue; */
        }

        .menu:hover {
            cursor: pointer;
            font-size: 16px;
        }
      }
