* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

header, footer, section {
  padding: 50px 0;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

a:hover {
  color: #007bff;
}

/* Header Styles */
header {
  background: #343a40;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
  float: left;
}

header h1:hover{
  color:#0056b3;
  transition: 2s;
  
}

nav ul {
  float: right;
}

nav ul li {
  display: inline;
  margin-left: 20px;
  
}

/* About Section Styles */
#about {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

#about h2 {
  color: #343a40;
}

/* Projects Section Styles */
#projects {
  background: #f8f9fa;
  padding-top: 100px;
  padding-bottom: 100px;
}

.project {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project:hover {
  transform: translateY(-5px);
}

.project h3 {
  color: #343a40;

}

.project p {
  color: #555;
  font-size: medium;
  padding-bottom: 50px;
}

.project a {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.project a:hover {
  background: #0056b3;
}

/* Contact Section Styles */
#contact {
  background: #343a40;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
}

#contact textarea {
  height: 150px;
}

#contact button[type="submit"] {
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact button[type="submit"]:hover {
  background: #0056b3;
}

/* Footer Styles */
footer {
  background: #343a40;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.container h2, p{
  font-size: x-large;
  margin-top:100px;
}

