* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  direction: rtl;
  text-align: right;
  font-family: sans-serif;
  overflow-x: hidden;
  background-color: rgba(244, 241, 232, 0.64);
}

@font-face {
    font-family: 'mitra';
    src: url(fonts/SI47ASH_MitraDeformed.ttf);
    font-weight: normal;
    
}

.container{
  display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
}

/* ========== HEADER ========== */

.header {
  /* background-image: url(image/Path\ 7.svg); */
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 5vw;
  /* min-height: 90px; */
}
.header img{
  width: 100%;
    height: 12vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

h1 {
  font-family: 'mitra';
  color: white;
  font-size: 1.7rem;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white url(image/logo31.png) center/contain no-repeat;
}

/* ========== FOOTER ========== */

.footer{
  display: flex;
  height: 15vh;
}

.footer img {
  width: 100%;
  height: 15vh;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.footer a{
  align-content: center;
}

a{
  text-decoration: none;
  color: white;
  margin-right: 2%;
  font-size: .7rem;
}

.main-container{
  display: flex;
  justify-content: space-around;
  align-items: center;
}


.right-pic{
  width: 360px;
  height: 350px;
}

.left-pic{
    width: 300px;
  height: 400px;
}

h2{
  position: absolute;
    bottom: 20px;
    right: 20px;
}

button{
  all: unset;
  cursor: pointer;
}

#back{
    position: absolute;
    top: 15%;
    right: 4%;
    width: 45px;
    height: 50px;
}


@media (max-width: 900px){
  .right-pic{
    width: 300px;
    height: 300px;
  }

  .left-pic{
    width: 200px;
    height: 300px;
  }
}

@media (max-width: 600px){
  .main-container{
    flex-direction: column-reverse;
  }
  .right-pic{
    width: 180px;
    height: 180px;
  }

  .left-pic{
    width: 140px;
    height: 180px;
  }
}