@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

:root {
  --clr-primary: #0e0b16;
  --clr-secondary: #4717f6;
  --clr-tertiary: #a239ca;
  --clr-quanternary: #e7dfdd;
  --clr-white: #fff;
  --clr-grey-0: #f8f8f8;
  --clr-grey-1: #dbe1e8;
  --clr-grey-2: #b2becd;
  --clr-grey-3: #6c7983;
  --clr-grey-4: #454e56;
  --clr-grey-5: #2a2e35;
  --clr-grey-6: #12181b;
  --ff-primary: "Poppins", sans-serif;
}

/*Home html*/
body {
  background-color: var(--clr-primary);
  color: var(--clr-quanternary);
  font-family: var(--ff-primary);
  font-size: 1.1rem;
}

.main-title {
  text-align: center;
  margin-top: 2rem;
}
.main-title h2 {
  font-size: 3.5rem;
  text-transform: uppercase;
  color: var(--clr-white);
}
.main-title span {
  color: var(--clr-secondary);
}

header .home-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5%;
  left: 3%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--clr-grey-5);
}
header .home-btn a {
  color: #dde5e7;
}
header .home-btn a i {
  font-size: 1.4rem;
}
header .author-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 5%;
  right: 3%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--clr-grey-5);
  cursor: pointer;
}
header .author-title a {
  color: #dde5e7;
}
header .author-title a i {
  font-size: 1.4rem;
}

.left-shape {
  background-color: var(--clr-tertiary);
  position: fixed;
  width: 15%;
  height: 100vh;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(100% 0, 0 65%, 100% 100%, 0 100%, 0 68%, 0 0);
          clip-path: polygon(100% 0, 0 65%, 100% 100%, 0 100%, 0 68%, 0 0);
}

.documentation {
  padding: 1.2rem 12rem;
  padding-bottom: 0;
  font-size: 1.1rem;
  text-align: center;
}
.documentation p {
  text-align: justify;
}

.topic-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  padding: 4rem 13rem;
  padding-top: 1.5rem;
}
.topic-links .topic-link {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  background-color: var(--clr-quanternary);
  padding: 1.13rem 1.5rem;
  border: 5px solid;
  border-radius: 20px;
  cursor: pointer;
}
.topic-links .topic-link a {
  text-decoration: none;
  color: var(--clr-primary);
}
.topic-links .topic-link:hover {
  background-color: rgb(33, 33, 33);
  border: 5px solid #27ae60;
  transition: all 0.3s ease-in-out;
}
.topic-links .topic-link:hover a {
  color: var(--clr-white);
}

.right-corner .author-footer {
  position: fixed;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.5rem;
  color: var(--clr-white);
}
.right-corner .author-footer .source {
  position: fixed;
  bottom: 3%;
  right: 1%;
  text-align: right;
}
.right-corner .author-footer .source a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #c6f617;
}
.right-corner .author-footer .author {
  position: fixed;
  bottom: 0;
  right: 1%;
}
.right-corner .right-shape {
  background-color: var(--clr-secondary);
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 15vw;
  height: 40vh;
  -webkit-clip-path: polygon(100% 8%, 0 100%, 100% 100%);
          clip-path: polygon(100% 8%, 0 100%, 100% 100%);
}

/*Array & Hashing*/
.main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 10rem;
}
.main-content table {
  color: var(--clr-white);
}
.main-content table a {
  color: var(--clr-white);
}
.main-content table a:hover {
  color: var(--clr-secondary);
  transition: all 0.4s ease-in-out;
}
.main-content table th {
  text-align: center;
}
.main-content table .table-code {
  text-align: center;
}
.main-content table .table-code a {
  color: var(--clr-white);
  border-radius: 50%;
}
.main-content table .table-code a i {
  font-size: 1.3rem;
}
.main-content table .table-code a:hover {
  color: var(--clr-grey-5);
  background-color: var(--clr-white);
}

@media screen and (max-width: 1200px) {
  .documentation {
    padding: 1.5rem;
  }
  .topic-links {
    padding: 2rem;
  }
  .main-content {
    padding: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .documentation {
    padding: 1rem;
  }
  .topic-links {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.1rem;
  }
  .main-content {
    padding: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */