body {
  font-family: Arial, sans-serif;
  background-color: white;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: black;
  color: rgb(48, 243, 243);
  box-shadow: 0 4px 8px 0 ;
}

header h1 {
  font-size: 36px;
  color: white;
  font-weight: bold;
  margin: 0;
}

header nav a {
  margin-right: 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 700px;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  height: 50%;
  margin: 40px;
  background-color: darkgray;
  color: black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 25px;
}

section img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

section p {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

section ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  margin-bottom: 20px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: black;
  color: white;
  box-shadow: 0 -5px 10px  rgba(0, 0, 0, 0.2);
  position: bottom;
  width: 100%;
}

footer p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
img {
  border-radius: 50%;
}

#textbox {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.button1 {
  background-color: black; 
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}


.section-title{
  text-align: center;
}

.Current-project{
  display: flex;
  justify-content: center;
  align-items: center;
}





