* {
    box-sizing: border-box;
  }
  
  body {
      font-family: "Helvetica Neue", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      color: #000;
      background-color: #ffffff;
  }
  
  main {
    text-align: center;
  }

  h1 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
  }
  
  h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
  }
  
  li {
    list-style-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23326688"><path d="M9 19c-.26 0-.51-.1-.71-.29l-6-6A.996.996 0 1 1 3.7 11.3l5.29 5.29L20.28 5.3a.996.996 0 1 1 1.41 1.41l-12 12c-.2.2-.45.29-.71.29Z"></path></svg>');
  }
  
  li::marker {
    font-size: 2.0em;
    line-height: 0.3;
  }
  
  p {
    margin-top: 0; 
    padding: 10px;
}
  
  a {
    color: #000;
    text-decoration: none;
  }
  
  a:hover {
    color: #979797ee;
  }
  
  img {
    filter: drop-shadow(0px 0px 10px #A0A0A0);
    border-radius: 5px;
  }

   img {
    filter: drop-shadow(0px 0px 10px #A0A0A0);
    border-radius: 5px;
  }
  
  .profilePicture {
    border-radius: 50%;
    max-width: 300px;    
}
  
  .profilePicture:hover {
    transition: 0.3s;
    transform: scale(1.1);
  }
  
  .navigation-menu {
    list-style-type: none;
    margin: 0px;
    padding: 5px;
    background-color: transparent;
    border-radius: 5px;
    box-shadow: 5px rgb(0, 0, 0);
  }
  
  .navigation-menu li {
    display: block;
    margin-right: 16px;
    margin-top: 16px;
  }
  
  .dialekmesir {
    background: linear-gradient(135deg, #bb36f9, #f2b33d);
    color: #ffffff;
    border-radius: 5px;
  }

  li a:not(dialekmesir) {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    text-decoration: none;
  }
  
  .navigation-menu li a:hover {
    background: linear-gradient(135deg, #bb36f9, #f2b33d);
    color: #ffffff;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 5px;
    transition: 0.3s;
    transform: scale(1.1);
  }

  ul {
    display: block;
      list-style-type: disc;
      margin-block-start: 1em;
      margin-block-end: 1em;
      margin-inline-start: 0px;
      margin-inline-end: 0px;
      padding-inline-start: 0;
      justify-content: center;
  }
  
  nav {
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  
  
  .gradient-text
  {
    background: #BB36F9;
    background: linear-gradient(to right, #BB36F9 0%, #F2B33D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* background: -webkit-linear-gradient(135deg, #bb36f9 0%, #f2b33d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
  }
/*   
  section {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  } */
  
  #username {
text-align: center;  }
 
 /* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}