body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    margin: 0;
    pointer-events: none;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .person {
    margin-bottom: 40px;
  }

  .logo {
    margin-bottom: 20px;
  }
  
  .person img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 2 columns with equal width */
    gap: 20px; /* Add gap between the divs */
  }
  
  .person h1 {
    font-size: 36px;
    margin-top: 20px;
    color: #333;
  }
  
  .date-time {
    font-size: 24px;
    color: #FFF;
    align-items: center;
    text-align: center;
  }
  
  @media (max-width: 600px) {
    .person img {
      width: 150px;
      height: 150px;
    }
    
    .person h1 {
      font-size: 24px;
    }
    
    .date-time {
      font-size: 20px;
    }
  }