 
 @import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa&display=swap");
 body{
            margin: 0;
      }
     header{
            background-color: #ffffff;
            display: flex;
            flex-direction: row;
            width: 100%;
            position: fixed;
            top:0;
        }
    .page-caption{
    font-family: "Karla";
    font-size: 45px;
    font-weight: 600;
    text-align: center;
    margin-top: 96px;
    background-color: #800080;
    border-radius: 25px;
    color: #ffffff;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    }
        main{
          margin-top: 53.3px;
        }
        .logo-section{
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 16px;
        }
        .logo-img{
            width: 80px;
        }
        .colors{
          color: #d49919;
        }
      .site-title{
        font-family: "Arimo",sans-serif;
        font-weight: 700;
        color: #800080;
        font-size: 30px;
      }
     
      .site-title{
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-grow: 1;
      }
      .nav-section{
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        background-color: #ffffff;
      }
      
      .nav-button{
        width: 120px;
        font-family: "Karla",sans-serif;
        background: none;
        cursor: pointer;
        border: none;
        outline: none;
        display: flex;
        flex-direction: row;
        background-color: #d49919;
        color: #ffffff;
        padding: 8px 0;
      }
      .nav-button:hover{
        background-color: #181717;
        color: #d49919;
      }
      
      .btn-icon{
        width: 30px
      }
      .auth-section{
        display: flex;
        justify-content: flex-end;
        flex-grow: 1;
      }
      .auth-button{
        border: 1.5px solid #ffffff;
        border-radius: 5px;
        width: 120px;
        padding: 5px;
        background: none;
        color: #ffffff;
        background-color: #d49919;
        margin-bottom: 8px;
        cursor: pointer;
        display: flex;
        justify-content: space-around;
      }
      .invisible{
        display: none;
      }
      .org-name{
        display: flex;
        flex-direction: column;
        margin-top: 10px;
        font-weight: 600;
      }
     .top-name{
      color:#d49919;
      font-family: "Arimo", sans-serif;
      font-weight: 600;
     }
     .bottom-name{
      color: #181717;
      font-family: "Aref Ruqaa";
      font-size: 12px;
     }
    .nav-ctrl{
      display: none;
      color: #181717;
    }

      .nav-ctrl-box{
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-end;
        flex-grow: 1;
      }

      .avatar{
        width: 30px;
        height: 30px;
        border-radius: 50%;
      }

      .avatar-box{
        background: none;
        border: none;
        margin: 0 16px;
        cursor: pointer;
      }

      @media(max-width: 768px){
        .nav-section{
         z-index: 99; 
         position: absolute;
         flex-direction: column;
         margin-left: -250px;
         background-color: #d49919;
         transition: margin-left 1s;
         transition-timing-function: ease;
         height: calc(100vh);
        }

        .nav-button{
          margin: 16px 0;
        }
        #home{
          margin-top: 0;
        }
        .nav-shown{
          margin-left: 0px;
        }

        .nav-ctrl{
          display: inline-flex;
          border: none;
          background: none;
          font-size: 18px;
        }

        .invisible{
          display: none;
        }

        .nav-button{
          width: 250px;
          background-color: #d49919;
        }
        .auth-button{
          border: none;
          width: 250px;
          background-color: #d49919;
          border-radius: 0;
          justify-content: flex-start;
        }
      }

      @media(max-width: 500px){
        .org-name{
          display: none;
        }
      }