    body {
      font-family: Arial, sans-serif;
      text-align: center;
      background-color: pink;
      margin: 0;
      padding: 0;
    }

    .main-content {
      margin-top: 30px;
      padding: 20px;
    }

    .title {
      color: #0073e6;
      margin: 10px 0;
    }

    .title.main {
      font-size: 36px;
      font-weight: bold;
    }

    .title.name {
      font-size: 28px;
      font-weight: 600;
    }

    .title.group {
      font-size: 24px;
      font-weight: 500;
    }

    .title.projects {
      font-size: 30px;
      font-weight: bold;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    .projects {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      padding: 10px;
    }

    .project-card {
      background: white;
      border-radius: 8px;
      width: 120px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #0073e6;
      text-decoration: none;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
      transition: transform 0.2s;
    }

    .project-card:hover {
      transform: scale(1.08);
      background: #f0f8ff;
    }

    .profile {
      margin-top: 20px;
      margin-bottom: 20px;
    }

    .profile img {
      border-radius: 50%;
      width: 220px;
      height: 220px;
      object-fit: cover;
    }


    .grid-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 40px auto;
      max-width: 900px;
      padding: 10px;
    }
    .grid-item {
      background: white;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
      transition: transform 0.2s;
    }
    .grid-item:hover {
      transform: scale(1.05);
      background: #f0f8ff;
    }
.container-fluid h1 {
  color: #0073e6;
}
    
    @media (max-width: 600px) {
      .grid-container {
        grid-template-columns: 1fr;
      }
    }
    
    .back-btn {
      display: inline-block;
      margin: 30px auto;
      padding: 12px 25px;
      background: #0073e6;
      color: white;
      font-weight: bold;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.3s;
    }
    .back-btn:hover {
      background: #005bb5;
    }

