*{
  padding:0;
  margin:0;
  font-family: 'Urbanist', sans-serif;
  color: #2A2F4F;;

}
.container {
  background-image: url("../img/bgPink.png");
  background-size: cover;
  background-position: center; 
  min-height: 100vh;
}

header {
  font-size:25px ;
  padding: 5px;
}

nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  align-items: center;
}

header nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: end;
  gap: 20px;
  border-bottom: 2px solid rgb(169, 113, 122);
  padding: 5px;
  backdrop-filter: blur(10px);
}

header nav ul li {
  display: inline-block;
  margin-right: 10px;
  font-size:32px ;
}

header nav ul li a {
  padding: 5px 20px;
  color: #2A2F4F;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

header nav ul li a:hover{
  color: rgb(169, 113, 122); 
  text-shadow: 1px 1px 2px rgba(64, 64, 64, 0.4);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

main {
  padding: 20px;
}

h1 {
  color: #2A2F4F;
  font-size: 50px;
  text-align: center;
  margin-bottom: 20px;
}

p {
  color: #555;
  line-height: 1.5;
}

.project-overview {
  margin-bottom: 20px;
}

.technologies-used{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.technologies-used ul {

  list-style-type: none;
  padding: 0;
}

.technologies-used h2 {
  margin-bottom: 20px;

font-size: 30px;
}

.technologies-used ul li {
  display: inline-block;
  font-size:20px ;
  margin-right: 10px;
  margin-bottom: 20px;
  background-color: #c98fc6;
  color: #2A2F4F;
  padding: 5px 10px;
  border-radius: 5px;
}


.project-challenges-cotainer{
  padding:40px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project-challenges {
  background-color: rgba(242, 242, 242, 0.8);
  padding: 10px;
  width: 94%;
  
}

.project-challenges a {
text-align: center;
text-decoration: none;
  
}

.project-challenges p {
margin-top:10px ;
margin-bottom: 10px;
font-size: 22px;
  
}

.project-challenges h2 {
  text-align: center;
  font-size:30px;
  padding-bottom: 10px;
  color:#c98fc6;
}
.githubSm{
  margin-top: 100px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color:#555;
  font-size: 20px;
  text-align: center;
}
.githubSm img{
  width: 80px;
  transition: transform 0.3s;
}

.githubSm img:hover {
  transform: scale(1.1); 
}
.githubSm a{
text-decoration: none;
}
.githubSm h2{
  font-size: 18px; /* Adjust the font size as needed */
  color: #2A2F4F; 
}

footer {
  text-align: center;
}


