* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #fff;
  scroll-behavior: smooth;

  transition: .2s;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}

.nav-sidebar {
  width: 200px;
  height: 100%;
  position: fixed;
  background-color: #1f1f1f;

  transition: 0.3s;
  z-index: 2;
}

#logo {
  width: 100%;
  background: none;
  border: none;
  color: aliceblue;
  font-size: 3rem;
  text-align: center;
  cursor: pointer;

  margin: 20px 0;
}

#logo span {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: hsla(0, 0%, 100%, 0.85);
  transition: 0.2s;
}


.menu {
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  margin-top: 10px;
  transition: 0.3s;
}

.menu ul {
  list-style: none;
}

.menu ul li {
  margin-top: 50px;
}

.menu ul li a {
  padding: 0;
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: lighter;
  transition: 0.3s;
}

.menu ul li a span {
  margin-left: 5px;
  transition: 0.3s;
}

.menu ul li a span:hover {
  font-size: 1.5rem;
  padding-bottom: 5px;
  border-bottom: 1px solid aliceblue;
}

.fa-circle-info {
  margin-left: 8px;
}

.fa-screwdriver-wrench {
  margin-left: 8px;
}
.fa-briefcase {
  margin-left: 8px;
}
.fa-lightbulb {
  margin-left: 8px;
}
.fa-phone-flip {
  margin-left: 8px;
}
.a{
    border-bottom: inherit;
}

.a:hover{
    padding: 10px;
    border-bottom: 2px solid #fff ;
    transition: .3s;
}


/* content */

.content {
  width: 100%;
  max-height: 100%;
  background-color: #111;
}

.about {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  left: 40px;
}

.about-box ul {
  display: flex;
  list-style: none;
  align-items: center;
  font-size: 1.7rem;
  text-align: center;

  margin-top: 5px;
  margin-bottom: 15px;
}

.about-box ul li {
  text-align: center;
  margin: 0px 10px;
}

.about h3 {
  color: rgba(185, 207, 255, 0.877);
  font-weight: 600;
  font-size: 3rem;
}

.about h1 {
    font-size: 36px;
}

.skill {
    width: 100%;
    height: 100%;
    background-color: #111;
    color: #fff;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.skill h1{
    position: relative;
    left: 40px;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffccef;
}

.skill-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Myskill{
    margin-top: 50px;
    justify-items: center;

    position: relative;
    left: 40px;

    font-size: 5rem;
    display: grid;
    grid-template-columns: auto auto auto ;
    gap: 70px;
}


.emtpy{
  width: 100%;
  height: 100%;
  background-color: #111;
  color: #fff;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

/*responsive*/
@media (min-width: 467px) and (max-width: 768.33px) {
  .container .nav-sidebar {
    width: 20%;
  }

  .menu ul li a span {
    font-size: 1rem;
  }

  .type{
    font-size: 20px;
  }

  .about-box h3 {
    width: 350px;
    text-align: center;
  }

}

@media (min-width: 0px) and (max-width: 375.33px) {
  .menu-text {
    display: none;
  }
  .nav-sidebar {
    width:20%;
  }
  .about-box h3 {
    font-size: 20px;
  }
  .type {
    font-size: 12px;
  }
  .fa-instagram,.fa-facebook{
      font-size: 22px;
  }
  .Myskill{
      grid-template-columns: auto auto;
      gap: 25px;
      font-size: 3rem;
  }
}

@media (min-width: 377px) and (max-width: 466.33px) {
  .about-box h3 {
    font-size: 20px;
  }
  .type {
    font-size: 18px;
  }
  .fa-instagram,.fa-facebook{
      font-size: 22px;
  }
  .Myskill{
      grid-template-columns: auto auto;
      gap: 25px;
      font-size: 3rem;
  }
}

@media screen and (min-width:0px) and (max-width:425.33px) {
    .about{
      height: 70vh;
    }
}

@media screen and (min-height:0px) and (max-height:469px) {
  .skill{
    height: 100%;
  }
}
