body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --greycolor : #dfdfdf;
    --smallFont : 16px;
    --mediumFont : 16px;
    --largeFont : 22px;
  
  }
  #header{
    width: 100%;
  }
    #inputContainer{
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 10px;
    }
    input{
      direction: rtl;
      padding: 5px;
      font-size: var(--largeFont);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    label{
      text-align: center;
      font-style: italic;
      font-size: var(--largeFont);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
    }
    summary{
      padding: 10px;
      text-align: center;
      font-size: var(--largeFont);
    }
    .detailsExtended{
      padding: 10px 5px;
    }
    .filtersGroup{
      display: flex;
      flex-direction: row-reverse;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 5px;
      margin: 10px;
    }
    .filterHeading{
      flex-basis: 100%;
      text-align: right;
      font-style: italic;
    }
    .filter{
      user-select: none;
      padding: 5px 10px;
      min-height: 30px;
      border-radius: 5px;
      font-size: var(--mediumFont);
      background-color: var(--greycolor);
    }
    .filter:active{
      background-color: #888888;
    }
  
  
  #main{
      width: 100%;
      display: flex;
      flex-direction: row-reverse;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      align-content: flex-start;
      margin: 40px 0px;
      gap: 3px;
      flex: 1;
  }
  .letter{
    width: 49%;
    max-width: 360px;
    border: 1px solid rgb(160, 160, 160);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .doubleLetter{
    width: 100%;
    max-width: 700px;
    border: 1px solid rgb(160, 160, 160);
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  img:active{
  filter: saturate(500%);
  }
  .imgFull{
    width: 100%;
    user-select: none;
  }
  .imgHalf{
    width: 50%;
    user-select: none;
  }
  button{
    border: none;
    font-size: var(--largeFont);
    width: 100%;
    height: 100px;
  }

  #chekboxesContainer{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }