@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
body{
    margin: 0;
    padding: 0;
    background-color: #191919;
    color: #FFF;
    font-family: 'Tajawal', sans-serif;
  }

  header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #FFF;
    width: 80%;
    margin: 1rem auto;
    font-family: inherit;
  }
  header h1{ cursor: pointer; }
  .viewChange{ color: #0B60B0; }
  header a{
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  
  header .icon-wrapper{
    margin-right: 1rem;
  }
  header .icon-wrapper:last-child{
    margin-right: 0;
  }

  header .icons{
    display: flex;
    justify-content: center;
    align-items: space-evenly;
    flex-wrap: wrap;
  }

  header .icons .icon-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
    cursor: pointer;
    margin: 0 .5rem;
    transform: scale(1);
    transition: all .2s ease-in;
  }
  header .icons .icon-wrapper:last-child{
    margin-right: 0;
  }

  header .icons .icon-wrapper:hover{
    transform: scale(1.3);
  }

  header .icons box-icon{
    width: 30px;
    height: 30px;
    margin-bottom: 0.2rem;
  }

  @media (max-width: 820px) {
    header{
        flex-direction: column;
    }
    header h1{
        text-align: center;
    }
  }
  
  main{
    width: 80%;
    background-color: transparent;
    padding: 1rem;
    margin: 1rem auto;
    height: 100dvh;
    font-size: 1.5rem;
    overflow-y: scroll;
    margin-bottom: 2rem;
    font-family: inherit;
    outline: auto;
    outline-color: #0B60B0;
    outline-width: .5rem;
    outline-style: double;
  }

  .success{
    width: 88%;
    margin: 0 auto;
    font-weight: bold;
    text-transform: capitalize;
    color: #6ECCAF;
  }

  .success-hidden{
    display: none;
  }

  footer{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .dark-mode{
    background-color: #FFFFFF;
    color: #000000;
  }
  .icons.dark-mode{
    background: transparent;
    color: #000;
  }