@font-face {
  font-family: 'MyFont';
  src: url('Vazir-Bold.woff') format('woff');
}
body {
  font-family: 'MyFont', sans-serif;
    text-align: center;
    font-family: 'MyFont', sans-serif;
    background-color: aqua;
  }
  
  .grid {
    display: grid;
    font-family: 'MyFont', sans-serif;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    position: relative;
  }

  
  .point {
    width: 50px;
    height: 50px;
    font-family: 'MyFont', sans-serif;
    background-color: #007BFF;
    border-radius: 50%;
    margin: auto;
    cursor: pointer;
    position: relative;
  }
  
  h2 {
    margin-top: 30px;
    font-family: 'MyFont', sans-serif;
  }
  
  p {
    margin-bottom: 20px;
    font-family: 'MyFont', sans-serif;
  }
  
  .line {
    font-family: 'MyFont', sans-serif;
    position: absolute;
    background-color: #28a745;
    width: 4px;
    height: 2px;
    transform-origin: 0 0;
  }
  button{
    font-family: 'MyFont', sans-serif;
    background-color: aqua;
    border: 2cm;
    border-color: antiquewhite;
    border-radius: 20px;
    font-size: larger;
  }
  .container {
    font-family: 'MyFont', sans-serif;
    width: 700px;
    height: 650px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 40px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
    font-family: "Tahoma", Arial, sans-serif;
    
}

@media (max-width: 768px) {

  .container {
      font-family: 'MyFont', sans-serif;
      width: auto;
      height: auto;
      margin: auto;
      background: white;
      padding: 20px;
      border-radius: 40px;
      box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
      font-family: "Tahoma", Arial, sans-serif;
      
  }
}