body {
  background-color: #f5f5f5; /* Light gray background */
  color: #333; /* Dark text color */
  /* background-color: #f8f9fa; */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  margin: 20px;
  text-align: justify;
}


.main-div{
  margin-top: 100px;
}

code {
  background-color: #eeeded;
  border: 1px solid #ddd;
  padding: 5px;
  display: block;
  margin: 10px 0;
  overflow-x: auto;
}

.navTitle{
  font-size: 1.5em;
}

.pageHeading {
  color: #007bff; /* Blue color for the heading */
  text-align: center; /* Center-align the heading */
  border-bottom: 2px solid #007bff; /* Add a bottom border */
  padding-bottom: 10px; /* Add some spacing below the heading */
}

.welcome-container {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}

/* styles.css */

/* Add your custom styles here */
/*
#mindBogglingAccordion {
  animation: rotateAccordion 5s infinite linear;
}

@keyframes rotateAccordion {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
*/
/* .card-header {
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.card-header:hover {
  background-color: #0056b3;
}

.card-header button {
  font-weight: bold;
}

.card-body {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-top: none;
  padding: 15px;
}

.card-body p {
  margin-bottom: 0;
}

.btn-link{
  color:antiquewhite;
} */

/* Welcome to the Java Tutorial - START */



.welcome-container h1 {
  font-size: 3em;
  background: linear-gradient(45deg, #3498db, #e74c3c);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  user-select: none;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.welcome-container h1:hover {
  transform: scale(1.1);
}

/* Welcome to the Java Tutorial - START */

.briefIntro{
  text-align: left;
}

<!--Contact Card-->
		#contactCard {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: 600px; /* Increased width */
        }

        #contactCardHeader{
            background-color: #007bff;
            color: #000000;
            padding: 15px;
            text-align: center;
        }

        #contactCardBody {
            padding: 20px;
        }

        #contactInfo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: left;
        }

        #contactInfo img {
            border-radius: 50%;
            width: 150px; /* Increased width */
            height: 150px; /* Increased height */
            margin-bottom: 15px;
        }

        #contactInfo p {
            margin: 5px 0;
        }

        #contactSocialLinks {
            margin-top: 20px;
            display: flex;
            justify-content: center;
        }

        #contactSocialLinks a {
            margin: 0 10px;
            color: #007bff;
            text-decoration: none;
            transition: color 0.3s ease-in-out;
        }

        #contactSocialLinks a:hover {
            color: #0056b3;
        }
		
		 /* Contact card info table*/
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        th {
			text-align: center;
            background-color: #a7dfe0;
        }
		
		#logo img {
            border-radius: 50%;
            width: 70px; /* Increased width */
            height: 70px; /* Increased height */
        }