* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #eef2f6;
}

header {
  text-align: center;
  background-color: #162134;
  padding: 50px 0;
  padding-bottom: 40px;

}

header h1 {
  color: #38bdf8;
  padding-bottom: 10px;
  font-size: 40px;
  letter-spacing: 1px;
}

header p {
  color: #C2CCD8;
  padding-bottom: 10px;
}

header nav a {
  text-decoration: none;
  background-color: #353b4c;
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  margin: 10px 5px;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  transition: all 0.5s;

}


header nav a:hover {
  background-color: #0284c7;
  transform: scale(1.2);
  box-shadow: 0px 3px 10px black;
}

main {
  margin: 50px auto;
  max-width: 850px;
  /* background-color: white; */
}

#about,
#projects,
#intro {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}

#about h2,
#projects h2,
#intro h2 {

  border-left: 5px solid #0284c7;
  padding-left: 10px;
}

#about figure {
  text-align: center;
  padding: 20px 0;
}

#about figure img {
  border-radius: 50%;
  border: 4px solid #0284c7;
  margin: 10px 0;
  object-fit: cover;
  transition: all 1s ;
}
#about figure img:hover{
 transform: scale(1.1);
 box-shadow: 0px 3px 10px black;
}

#about figure figcaption {
  color: #64748b;
  font-style: italic;
  font-size: 14px;
}

#about p {
  border-radius: 16px;
  background-color: #f8fafc;
  padding: 20px;
  border: 1px solid #f0f0f1;
  font-size: 18px;
  color: #334155;
}

.art {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;

}

.art article {
  background-color: #f8fafc;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  /* display: flex;
  flex-direction: column;
  gap: 10px; */
  flex: 1;
  color: #10162a;
  transition: all 0.5s;
}
.art article:hover {
transform: translateY(-8px);
box-shadow: 0px 3px 10px black;
}

.art article p {
  color: #64748b;
  font-size: 14px;
  margin: 15px 0;
}

.art article a {
  text-decoration: none;
  background-color: #0284c7;
  color: white;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;

}

.skills {
  background-color: #f1f5f9;
  border-radius: 10px;
  padding: 20px;
}

.skills ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
  margin: 10px 0;
    flex-wrap: wrap;

}

.skills ul li {
  background-color: #e0f2fe;
  border-radius: 30px;
  border: 1px solid #bae6fd;
  padding: 7px 14px;
  color: #0369a1;
  font-weight: 600;

}

#intro {
  text-align: center;
}

#intro h2 {
  text-align: left;
}

#intro video {
  /* padding: 30px; */
  max-width: 100%;
  object-fit: cover;
  height: auto;
  border-radius: 40px;
  border: 5px solid #cbd5e1;
  margin: 20px 0;
}


footer {
  margin: 50px auto;
  max-width: 850px;
  background-color: #162134;

  color: white;
  padding: 30px 30px 0;
  border-radius: 20px;
  margin-bottom: 30px;
}

footer h2 {
  border-left: 5px solid #0284c7;
  padding-left: 10px;
  font-size: 30px;
  margin-bottom: 20px;
}

footer p{
  padding:6px 0 ;
}
footer p a{
text-decoration: none;
color: #38bdf8;
font-size: 20px;

}
footer p a:hover{
text-decoration: underline;
color: #38bdf8;

}
footer form label{
display: block;
margin: 7px 0;
font-weight: 500;
color: #cbd5e1;
}

form{
  max-width: 80%;
}

form input[type="text"],
form input[type="email"],
textarea {
  width: 100%;
  background-color: #1e283b;
  outline: none;
  border: 1px solid #475569;
  border-radius: 5px;
  padding: 10px 20px;
  color: white;
  margin: 7px 0;
}

form button {
  background-color: #0284c7;
  color: white;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
  padding: 10px 20px;
outline: none;
border: none;
margin: 10px 0;

}

#lower-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(128, 128, 128, 0.356);
  padding: 20px 0;
  margin-top: 10x;
  flex-wrap: wrap;
}