* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

body {
  background: linear-gradient(193deg, #0b4a51 0%, #0e1314 40%);
  background-repeat: no-repeat;
  min-height: 100vh;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  padding: 16px 20px;
}
header nav .logo {
  cursor: pointer;
}
header nav .burger-menu {
  font-size: 34px;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
}

#overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: none;
  z-index: 900;
}

aside {
  background: linear-gradient(7.49deg, rgba(3, 14, 17, 0.86) 31.73%, rgba(4, 22, 27, 0.86) 84.13%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  top: 0;
  left: -70%;
  height: 100%;
  width: 70%;
  position: fixed;
  transition: all 0.3s;
  z-index: 1000;
}
aside .menu-bar {
  width: 100%;
  height: 100%;
  padding: 24px;
  background: linear-gradient(7.49deg, rgba(3, 14, 17, 0.86) 31.73%, rgba(4, 22, 27, 0.86) 84.13%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
aside .menu-bar ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
aside .menu-bar ul a {
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  background-color: transparent;
  box-sizing: border-box;
}
aside .menu-bar ul a li {
  padding: 14px 24px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 10px;
  color: #fff;
  list-style: none;
}
aside .menu-bar ul a li:hover {
  background-color: #38bdf8;
  color: #000;
}

.home {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.home .profile-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.home .profile-container .profile-img {
  width: 200px;
}
.home .profile-container .profile-img img {
  border-radius: 100px;
  width: 100%;
}
.home .profile-container .name-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.home .profile-container .name-container .name {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
}
.home .profile-container .name-container .about-keywords {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
.home .shery-student-card {
  background-color: #000;
  padding: 16px 24px;
  color: #fff;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home .para-container {
  text-align: center;
  color: #9db5b9;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 300;
}
.home .home-buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.home .home-buttons a {
  text-decoration: none;
  width: 100%;
}
.home .home-buttons a .docs-home-button {
  all: unset;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 0;
  background-color: #283639;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
}
.home .home-buttons a {
  text-decoration: none;
}
.home .home-buttons a .projects-home-button {
  all: unset;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 0;
  background-color: #283639;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
}
.home .home-buttons .docs-home-button:hover {
  background-color: #38bdf8;
  color: #000;
}
.home .home-buttons .projects-home-button:hover {
  background-color: #38bdf8;
  color: #000;
}

.projects a {
  text-decoration: none;
}
.projects a .project-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.projects a .project-card .img img {
  width: 100%;
  border-radius: 10px;
}
.projects a .project-card .text-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.projects a .project-card .text-content h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.projects a .project-card .text-content p {
  color: #9db5b9;
  font-size: 18px;
  font-family: "Space Grotesk", sans-serif;
}

footer {
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 24px;
}
footer .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
footer .socials a {
  text-decoration: none;
  color: #fff;
}
footer .socials a i {
  border: 1px solid #fff;
  padding: 10px;
  font-size: 20px;
  border-radius: 100px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
footer .copyright {
  font-size: 14px;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
}/*# sourceMappingURL=style.css.map */