@font-face {
  font-family: 'bitter'; 
  src: url('../files/Bitter-SemiBoldItalic.ttf') format('truetype'); 
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 h1{
	 font-family: 'Bitter', Arial, sans-serif;
 }
.project-details h3 {
	font-family: 'Bitter', Arial, sans-serif;
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/abc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(6px); 
  z-index: -1;
}

header {
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  height: 80px;
}

header nav ul li {
  display: inline-block;
  position: relative;
  background-color: black;
  margin-right: 30px;
}

header nav ul li:last-child {
  margin-right: 0;
}

header nav ul li a {
  display: block;
  padding: 10px;
  color: #94E5F1;
  text-decoration: none;
   font-size: 21px;
    font-weight: bold;
	 letter-spacing: 2px;
}

header nav ul li:hover > a {
  color: black;
}

header nav ul li:hover a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #94E5F1;
}

header nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
}

header nav ul ul li {
  display: block;
}

header nav ul ul li a {
  padding: 10px;
  color: #94E5F1;
}

header nav ul li a:hover,
header nav ul ul li a:hover {
  background-color: #94E5F1;
  color: black;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li {
  display: inline-block;
  position: relative;
  background-color: black;
}

nav ul li a {
  display: block;
  padding: 10px;
  color: #94E5F1;
  text-decoration: none;
}

nav ul li:hover > a {
  color: black;
}

nav ul li:hover a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #94E5F1;
}

nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
}

nav ul ul li {
  display: block;
}

nav ul ul li a {
  padding: 10px;
  color: #94E5F1;
}

nav ul li a:hover,
nav ul ul li a:hover {
  background-color: #94E5F1;
  color: black;
}

nav ul li:hover > ul {
  display: inherit;
}

footer {
  background-color: #000000;
  color: #94E5F1;
  padding: 10px;
  text-align: center;
  position: flex;
  bottom: 0;
  left: 0;
  width: 100%;  
  height: 12%;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
}

footer .footer-center a {
  color: #94E5F1;
  text-decoration: none;
  margin: 0 10px;
   font-size: 18px;
}

footer p {
  font-size: 17px;
  opacity: 1;
}

footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

footer ul li {
  flex: 1;
  text-align: center;
}

footer ul li:first-child {
  text-align: left;
  margin-right: auto;
}

footer ul li:last-child {
  text-align: right;
  margin-left: auto;
}

footer ul li a {
  color: #94E5F1;
  text-decoration: none;
}

footer ul li:hover > a {
  color: white;
}

footer .copyright {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  padding: 20px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #555;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #777;
}

h1 {
	color: #94E5F1;
	margin-top: 1%;
	margin-bottom: 1%;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 auto rgba(0, 0, 0, 0.8);
	  box-sizing: border-box;
	  margin-left:  40%;
	  margin-right:  40%;
	  background-size: 200%;
}


.portfolio-section {
  margin-top: 20px;
  background-color: transparent; 
  padding: 20px;
}

.project {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  background-color: 0, 0, 0, 0.9;
}

.project-image {
  width: 800px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  order: 1;
  margin-right: 20px; 
  transition: transform 0.3s;
  float: left; 
}

.project-image:hover {
  transform: scale(1.1);
}

.project-image img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.project-details {
  width: 650px;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  order: 2;
  transition: transform 0.3s;
  float: right; 
}

.project-details:hover {
  transform: scale(1.1);
}

.project-details h3 {
  font-size: 27px;
  color: #000;
  margin-bottom: 10px;
}

.project-details p {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .project {
    flex-direction: column;
  }

  .project-details,
  .project-image {
    width: 100%;
    text-align: center;
  }
  
	

