html,
body {
    margin: 0;
    padding: 0;
}

#root {
   width:1280px;

    margin: 0 auto;
    display: flex;
    flex-flow: column;
    border:3px solid black;
}

#topBar {
    /* background-color:#C1292E ; */
    background-color:#B2AC88;
    height: 18rem;
    
   
    background: linear-gradient(to left,
                   
                
                    blue,
                    violet
);
            -webkit-background-clip: text;
            color: transparent;
           
            display: flex;
            flex-direction: row;
            justify-content: center;
}
#topBar>div{
  height: 100%;
}

#title{
  margin: 0.3em ;
  padding-left: 25px;
  padding-right: 65px;
  align-self: center;
  text-shadow: 2px 2px ;
  
}

#logo{
  border-radius: 50%; object-fit: cover;max-height: 100%;

}
#logo1{

    max-height: 
100%;
border-radius: 50%; object-fit: cover;
  }
li{ color: #15016b;
 font-style: Aptos Narrow;
margin: 0px;

}
#menuBar {
    /* background-color:#1e5385; */
    background-color:#3964C3;
    display: flex;
    justify-content: space-between;
    padding: 0 2em;
    align-items: center;
    font-size: 1.7em;
 
}

#menuBar>a {
    /*font-variant: small-caps;*/
    color: white;
    text-decoration: none;
    margin: 0.5em 0;

}


@keyframes fadein {
    from { opacity: 0.5; }
    to   { opacity: 1; }
}

#contentZone {
    flex-grow: 1;
    /* background: linear-gradient(-225deg, #5D9FFF 0%, #B8DCFF 48%, #6BBBFF 100%);  */


    background-image: linear-gradient(to bottom right,skyblue,white,blue);
   
    animation: fadein 0.5s ease-in-out;
}

#contentZone label {
    display: block;
}
#contentZone li {
    margin-bottom: 1em;

}
#topElem>*{
    display: inline-block;
 
}

.org_logo{
padding: 20px;
}
.lTitle{
    color:#15016b;
   
  animation-name: example;
  animation-duration: 10s;
  animation-iteration-count: 20;
}
.olist{
    color:#15016b;
    list-style: none;
   
}


.animate-charcter
{
   
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );

  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 25px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
@keyframes example {
    from {color:blue;}
    to {color: blueviolet;}
  }
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  @keyframes blinking {
    0% {border-right-color: transparent}
    50% {border-right-color: black}
    100% {border-right-color: transparent}
  }



  .blink {
        animation: blink-animation 1s steps(5, start) infinite;
        -webkit-animation: blink-animation 1s steps(5, start) infinite;

      }
      @keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
      @-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }













