/* Reset some default styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 100%;
}

header {
    text-align: center;
    background-color: #f0f0f0;
    color: #000;
    padding: 0px;
}

header h1 {
	text-align: center;
    font-size: 24px;
	padding: 0px;
    text-shadow: 2px 2px 4px #000000;
	color: #333;
}

header p {
    font-size: 18px;
}

section {
    background-color: #fff;
    margin: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 24px;
	padding: 0px;
    margin-bottom: 0px;
    color: #333;
}

h5 {
    font-size: 18px;
	padding: 0px;
    margin-bottom: 0px;
	text-align: center;
    color: #333;
}

h3 {
    font-size: 20px;
	padding: 0px;
    margin-bottom: 0px;
	text-align: left;
    color: #555;
}

h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #555;
}

h6 {
    font-size: 28px;
	padding: 0px;
    margin-bottom: 0px;
	text-align: center;
    color: #333;
}
ul {
  list-style-type: square;
  margin: 0;
  padding: 0;
}

/* Add media queries for responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 22px;
    }
    header p {
        font-size: 16px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
}

/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Twitter */
.fa-twitter {
  background: #55ACEE;
  color: white;
}

.shadow-vinod {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* Subtle shadow */
    color: #333; /* Darker text for contrast */
}

.glow-more {
    text-shadow: 0 0 8px rgba(0, 123, 255, 0.7); /* Blue glow */
    color: #007bff; /* Text color matching the glow */
    font-weight: bold;
}

/* Customize the styling further as per your preferences */
