body, html {
    background-image: url('https://img.freepik.com/premium-vector/education-school-pattern-design_260839-1.jpg?size=626&ext=jpg&ga=GA1.1.735520172.1710460800&semt=ais');
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
  }
  
  .dashboard-container {
    padding: 20px;
    border: 2px solid #333;
    border-radius: 20px;
    border-style: double;
    border-width: 10px;
  }
  
  .dashboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
  }
  
  .option {
    text-decoration: none;
    width: 150px; /* Adjust option width */
    height: 150px; /* Adjust option height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    border-width: 5px;
    border-style: dashed;
    border: 2px solid #333;
    border-radius: 50%;
    background-color:gray;
    box-sizing: border-box;
    color: white;
  }
  
  .option h2 {
    margin: 0;
  }
  
 
  
  @media (max-width: 480px) {
   .option {
     margin: 10px; /* Add margin-bottom for vertical spacing */
    }
  }