* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  width: 80%;
}
header {
  background: #000;
  padding: 12px 0;
}
header ul {
  list-style: none;
  display: flex;
  justify-content: end;
  padding: 10px 0;
  gap: 25px;
  margin-right: 15px;
}
ul li a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}

#home {
  background: url(images/skill.jpg) no-repeat center/cover fixed;
  display: flex;
  justify-content: center;
  height: 100vh;
  color: #fff;
  align-items: center;
  text-align: center;
}
#home h1 {
  color: #ff7200;
  font-size: 2rem;
}

#about {
  display: flex;
  color: #fff;
  background: #000;
  justify-content: center;
  align-items: center;
  text-align: justify;
}
.about-content {
  line-height: 25px;
  font-weight: bold;
  margin-right: 10px;
  padding: 30px 0;
}
.about-content button {
  background: #ff7200;
  border: 0;
  outline: 0;
  border-radius: 25px;
  padding: 10px;
  margin: 20px 0;
}
.about-content button a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
}
.mypic {
  text-align: center;
  margin: 0 15px;
}
.mypic img {
  width: 220px;
  height: 250px;
  border-radius: 50%;
}

#skill,
#project {
  background: #000;
  padding: 25px 0;
  text-align: center;
  color: #fff;
}

.myskill {
  width: 100%;
  display: flex;
  background: url(images/skill.jpg) no-repeat center/cover fixed;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
.boxe {
  margin: 35px 0;
  width: 30%;
  background: #fff;
  padding: 25px 0;
  border-radius: 25px;
}
.boxe img {
  border-radius: 25px;
}

.myprojects {
  width: 100%;
  display: flex;
  background: url(images/project.jpg) no-repeat center/cover fixed;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
.pro {
  width: 45%;
  background: #fff;
  margin: 35px 0;
  padding: 15px 0;
  border-radius: 25px;
}
.pro img {
  height: 300px;
  width: 250px;
  /* case one */
  border-radius: 50%;
}
.pro button {
  background: #ff7200;
  border: 0;
  outline: 0;
  border-radius: 25px;
  padding: 10px 45px;
  width: 220px;
}
.pro button a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
}

footer {
  background: #000;
  padding: 30px;
  text-align: center;
  line-height: 32px;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}
.frontend h1 {
  color: #ff7200;
}

@media (max-width: 680px) {
#home{
height:70vh;
}
  #about {
    display: block;
  }
  .mypic,
  .about-content {
    width: 80%;
    margin: 10px auto;
  }
  .myprojects,
  .myskill {
    padding: 20px 0;
    display: block;
    margin: 0 0 20px;
  }
  .boxe {
    width: 60%;
    margin: 12px auto;
  }
  .pro {
    width: 90%;
    margin: 12px auto;
  }
}
