:root {
  --shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  --color-green: #2cbc63;
}

@font-face {
  font-family: vazir;
  src: url(../fonts/Vazirmatn-Bold.woff2);
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: vazir;
  src: url(../fonts/Vazirmatn-Regular.woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: vazir;
}

body {
  direction: rtl;
  background-color: #f8f8f8;
}

a
{
  text-decoration: none;
  color: inherit;
}

.container {
  padding: 1rem;
}

.header {
  background-color: white;
  box-shadow: var(--shadow);
  padding: 1rem;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
}

.header__title
{
  display: none;
}

.navigation
{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}




@media (min-width:48rem) {

  .container
  {
    width: 80vw;
    margin: 0 auto;
  }

  .header
  {
    all: unset;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: .25rem;
  }

  .header__title
  {
    display: block;
    font-size: 1.5rem;
  }

  .navigation
  {
    all: unset;
    display: flex;
    gap: 1rem;
  }
}