@font-face {
    font-family: sahel;
    font-style: normal;
    font-weight: 100;
    src: url("/fonts/sahel/Sahel-Black-FD.eot");
    src: url("/fonts/sahel/Sahel-Black-FD.woff") format("woff"),
    url("/fonts/sahel/Sahel-Black-FD.ttf") format("ttf")
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: #29323c;
    font-family: sahel;
    font-size: 16px;
  }
  
  .align-center, .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .button {
    width: auto;
    border-radius: 4px;
    border: 1px solid #29323c;
    text-align: center;
    padding: 12px 0;
  }
  
  .container {
    width: 100vw;
    height: 100vh;
    background-color: #c7c7c7;
  }
  
  .app {
    position: relative;
    width: 328px;
    height: 452px;
    cursor: pointer;
  }

  .app-content {
    position: relative;
    border-radius: 20px;
    transition: 0.24s all;
    transform: perspective(0) rotateY(0) translateX(0) scale(1, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 328px;
    height: 452px;
    box-shadow: 0 24px 40px 0 rgba(0, 0, 0, 0.16);
    overflow: hidden;
    cursor: pointer;
    filter: blur(0);
    background: #fff;
    cursor: pointer;
  }
  .app-content > * {
    pointer-events: none;
  }

  .app-buttons {
    position: absolute;
    z-index: -1;
    width: 164px;
    height: 150px;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: -164px;
    transition: 0.24s all;
  }

  .app-photo {
    width: 100%;
    height: 284px;
    background: url("https://www.loopweb.ir/files/logo.png");
    background-position: center;
    background-size: 80%;
  }
  .app-title {
    padding-top: 24px;
    height: 84px;
    text-align: center;
  }
  .app-title div:first-child {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
  }
  .app-title div:last-child {
    font-size: 14px;
    font-weight: 300;
    color: #8A8F94;
    margin-top: 8px;
  }
  .app-bottom {
    padding-bottom: 24px;
    height: 84px;
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: space-around;
  }
  .app__block {
    text-align: center;
  }
  .app__block h3 {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
    color: #8A8F94;
    margin-bottom: 4px;
  }
  .app__block p {
    font-weight: 700;
  }