/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Page Title Styling */
h2 {
  text-align: left;
  color: #4caf50;
  font-size: 36px;
  margin-bottom: 20px;
}

/* Link Styling */
a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Main Content Container */
div.container {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* BTech Student Information Styling */
.info {
  margin-top: 20px;
  font-size: 18px;
}

.info span {
  font-weight: bold;
}

/* Footer or Extra Information (optional) */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: #777;
}
