@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap");
* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #f3e6d5;
  width: 100%;
  height: 100vh;
  font-family: "Montserrat", sans-serif;
  border: 3px solid #5b3824;
  position: relative;
  overflow-x: hidden;
}
body header {
  height: 5%;
  width: 100%;
  background: #d5a46dc4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 3px solid #5b3824;
}
body header .header-logo {
  width: 50px;
}
body header .header-logo img {
  height: 100%;
}
body header .header-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body header .header-page p {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  color: #5b3824;
}
body main {
  width: 100%;
  height: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
body main aside {
  height: 100%;
  width: 15%;
  background: #d5a46dc4;
  border-right: 3px solid #5b3824;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0%;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
body main aside ul {
  height: 95%;
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  row-gap: 15px;
}
body main aside ul li {
  width: 100%;
  border: 1px solid #5b3824;
  padding: 5px 10px;
}
body main aside ul li a {
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.25px;
  color: #5b3824;
  display: block;
}
body main aside ul li.active {
  background: #5b3824;
}
body main aside ul li.active a {
  color: #000;
}
body main aside > div {
  position: absolute;
  top: 15px;
  right: -32px;
  width: 30px;
  height: 30px;
  background: #5b3824;
  display: -ms-grid;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1;
}
body main aside.slide-aside {
  left: -15%;
}
body main section.main-section {
  height: 100%;
  width: 85%;
  overflow: auto;
  position: absolute;
  left: 15%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
body main section.main-section::-webkit-scrollbar {
  width: 12px;
}
body main section.main-section::-webkit-scrollbar-track {
  background: #d5a46dc4;
}
body main section.main-section::-webkit-scrollbar-thumb {
  background: #5b3824;
}
body main section.main-section::-webkit-scrollbar-thumb:hover {
  background: #a46541;
}
body main section.main-section footer {
  height: 40px;
  width: 100%;
  background: #d5a46dc4;
  border-top: 3px solid #5b3824;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body main section.main-section footer p {
  color: #5b3824;
  font-size: 14px;
  font-weight: 500;
}
body main section.main-section footer p a {
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.25px;
  color: #5b3824;
}
body main section.main-section section {
  padding: 25px 50px;
  min-height: calc(100% - 40px);
}
body main section.main-section section.youtube {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 25px 25px;
}
body main section.main-section section.youtube .youtube-card {
  padding: 20px 15px;
  border: 1px solid #5b3824;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 0px 0px #5b3824;
          box-shadow: 5px 5px 0px 0px #5b3824;
}
body main section.main-section section.youtube .youtube-card p {
  font-size: 13px;
  letter-spacing: 0.25px;
  color: #5b3824;
  line-height: 20px;
}
body main section.main-section section.youtube .youtube-card p a {
  text-decoration: none;
  font-weight: bold;
  color: #41210f;
  padding-bottom: 1px;
  border-bottom: 2px solid #9d603ca4;
}
body main section.main-section section.youtube .youtube-card p a:hover {
  border-bottom: 2px solid #482613;
}
body main section.main-section section.project-ideas {
  display: -ms-grid;
  display: grid;
  place-items: center;
  row-gap: 30px;
}
body main section.main-section section.project-ideas .projects {
  width: 100%;
}
body main section.main-section section.project-ideas .projects h2 {
  color: #5b3824;
  margin-bottom: 20px;
  border: 1px solid #5b3824;
  display: inline-block;
  padding: 10px 20px;
}
body main section.main-section section.project-ideas .projects ul {
  list-style: none;
}
body main section.main-section section.project-ideas .projects ul li {
  position: relative;
  width: 100%;
  height: auto;
  padding: 10px 15px 10px 30px;
  color: #5b3824;
  font-size: 14px;
  font-weight: 500;
}
body main section.main-section section.project-ideas .projects ul li::before, body main section.main-section section.project-ideas .projects ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
body main section.main-section section.project-ideas .projects ul li::before {
  width: 8px;
  height: 8px;
  border: 1px solid #5b3824;
  background: #f3e6d5;
  border-radius: 50%;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  z-index: 1;
}
body main section.main-section section.project-ideas .projects ul li:hover::before {
  background: #5b3824;
}
body main section.main-section section.project-ideas .projects ul li::after {
  width: 2px;
  height: 100%;
  background: #5b3824;
  left: 4px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
body main section.main-section section.project-ideas .projects ul li:first-child::after {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}
body main section.main-section section.project-ideas .projects ul li:last-child::after {
  -webkit-transform: translate(0%, -100%);
          transform: translate(0%, -100%);
}
body main section.main-section section.project-ideas .projects ul li a {
  color: #5b3824;
}
body main section.main-section section.domain-ext,
body main section.main-section section.http-codes,
body main section.main-section section.doc-learning,
body main section.main-section section.prac-learning,
body main section.main-section section.dev-blogs,
body main section.main-section section.dev-tools,
body main section.main-section section.others {
  display: -ms-grid;
  display: grid;
  place-items: center;
}
body main section.main-section.full-main {
  left: 0%;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  body main section.youtube {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  body main section.youtube {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 900px) {
  body main aside {
    width: 40%;
  }
  body main aside.slide-aside {
    left: -40%;
  }
  body main section.main-section {
    width: 100%;
    left: 40%;
  }
  body main section.main-section section.youtube {
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 650px) {
  body main aside {
    width: 50%;
  }
  body main aside.slide-aside {
    left: -50%;
  }
  body main section.main-section {
    width: 100%;
    left: 50%;
  }
  body main section.main-section section.youtube {
    -ms-grid-columns: 1fr 25px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  body header {
    padding: 8px 15px;
  }
  body main aside {
    width: 60%;
  }
  body main aside.slide-aside {
    left: -60%;
  }
  body main section.main-section {
    width: 100%;
    left: 60%;
  }
  body main section.main-section section.youtube {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}