@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800&family=VT323&display=swap);
/* google font */

/* layout */
:root {
  --primary: #1aac83;
  --error: #e7195a;
}
body {
  background: #f1f1f1;
  margin: 0;
  font-family: "Poppins";
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  min-height: 2.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 2.5rem;
  gap: 12px;
  padding: 6px 16px;
  flex-wrap: wrap;
}
header .lower-container {
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
header a {
  color: #333;
  text-decoration: none;
  align-items: center;
}
.pages{
  max-width: 1400px;
  padding: 20px;
  margin: 0 auto;
  width: 100%;
}

.programmer-profile-pages {
  max-width: 1240px;
}
/* homepage */
.home-banner {
  text-align: center;
  padding: 40px 20px 30px 20px;
  color: white;
  margin-bottom: 20px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.home-banner > * {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-weight: bold !important;
  margin-bottom: 16px !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-subtitle {
  opacity: 0.9;
  font-weight: 300 !important;
}

.profile-picture-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.profile-picture {
  width: 400px !important;
  height: 400px !important;
  border: 4px solid #020d3b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.choice-box {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}

.choice-button-artist {
  padding: 0.6em 2em;
  font-size: large !important;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #020d3b !important;
  cursor: pointer;
  position: relative;
  z-index: 0;
  top: 2rem;
  float: left;
  width: 20rem;
  margin-left: 20rem !important;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
@keyframes glowing-choice-button-artist {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.choice-button-artist:after {
  z-index: -1;
  content: "";
  position: absolute;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.choice-button-dev {
  padding: 0.6em 2em;
  font-size: large !important;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #020d3b !important;
  cursor: pointer;
  position: relative;
  z-index: 0;
  top: 2rem;
  float: right;
  width: 20rem;
  margin-right: 20rem !important;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

@keyframes glowing-choice-button-dev {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.choice-button-dev:after {
  z-index: -1;
  content: "";
  position: absolute;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}
/* artist page */
.artwork-back-button {
  position: absolute !important;
  margin: 1rem!important;
}
/* programmer page */
.home-one {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 20px;
  margin: 0 auto;
}

.home-github {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 3.4fr);
  grid-template-rows: auto 1fr;
  margin: 0px auto;
  background: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  padding: 28px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  min-height: 140px;
  align-content: flex-start;
  width: 100%;
}

.github-chart-image {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  justify-self: stretch;
  align-self: stretch;
  object-fit: fill;
}

.home-github h4 {
  margin: 0 0 10px 0;
  color: #1976d2;
  grid-column: 1 / -1;
}

.home-two {
  display: grid;
  grid-template-columns: 5fr;
  gap: 2rem;
}
.home-three {
  display: grid;
  grid-template-columns: 5fr;
  gap: 2rem;
}
.programmer-to-top-button {
  position: absolute !important;
  margin-right: 1rem;
}
/* general details tab */
.general-details {
  background: #fff;
  border-radius: 4px;
  margin: 40px auto;
  padding: 40px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.general-details h4 {
  margin: 0 0 10px 0;
  font-size: 1.2em;
  color: #1976d2;
}
.general-details p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
  padding: 5px;
}
.general-details {
  margin: 0;
  font-size: 1.0em;
  color: #555;
}
/* current skill details tab */
.current-skill-details {
  background: #fff;
  border-radius: 4px;
  margin: 5px auto;
  padding: 5px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  z-index: 0;
}
.current-skill-details-desc {
  margin-left: 2rem;
  display: inline-block;
}
.current-skill-details h4 {
  margin: 0 0 0 0;
  font-size: 1rem;
  color: #1976d2;
}
.current-skill-details p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
  padding: 2px;
}
.current-skill-details {
  font-size: 1.0rem;
  color: #555;
}
.current-skill-details span {
  top: 20px;
  right: 20px;
  cursor: pointer;
  border-radius: 50%;
  color: #333;
}
.artwork-heading {
  background: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  margin: 10px 0;
  padding: 20px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 100%;
}
.artwork-heading h4 {
  margin: 0;
  color: #1976d2;
  cursor: pointer;
}
.current-skill-heading {
  background: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  margin: 10px auto;
  padding: 20px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}
.current-skill-heading h4 {
  margin: 0 0 0 0;
  color: #1976d2;
  cursor: pointer;
}
.full-skill-heading {
  background: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  margin: 4px auto;
  padding: 18px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}
.full-skill-heading h4 {
  margin: 0 0 0 0;
  color: #1976d2;
  cursor: pointer;
}
/* work experience details tab */
.work-experience-details{
  background: #fff;
  border-radius: 4px;
  padding: 1rem;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  z-index: 0; 
}
.work-experience-details h4 {
  margin: 0 0 0 0;
  color: #1976d2;
  font-size: larger;
  cursor: pointer;
}
.work-experience-comment-list {
  list-style-type:disc;
}
.work-experience-title{
  font-weight: bold;
  margin: 0.5rem;
}
.work-experience-misc{
  padding: .5rem;
  font-family: "Arial";
  font-weight: bold;
  font-size: 12pt;
}
/*education*/
.education-details {
  background: #fff;
  border-radius: 4px;
  padding: 1rem;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  z-index: 0; 
}
.education-details h4 {
  margin: 0 0 0 0;
  color: #1976d2;
  font-size: larger;
  cursor: pointer;
}
.education-title{
  font-weight: bold;
  margin: 0.5rem;
}
.education-details-list {
  width: 100%;
}
/* dev books */

/* dev links */
.devlink-heading {
  background: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  margin: 10px auto;
  padding: 20px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
  cursor: pointer;
}
/*misc*/
.icon-text-alignment {
  vertical-align: bottom;
}
.navbar-site-buttons {
  margin: 4px;

}
.navbar-button-color {
  font-weight: 700 !important;
  font-size: large;
}

.navbar-right-section {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar-mobile-container {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

.navbar-mobile-left,
.navbar-mobile-center,
.navbar-mobile-right {
  display: flex;
  align-items: center;
}

.navbar-mobile-left,
.navbar-mobile-right {
  flex: 1 1 0;
}

.navbar-mobile-center {
  justify-content: center;
}

.navbar-mobile-right {
  justify-content: flex-end;
  gap: 8px;
}

.navbar-mobile-menu-btn {
  padding: 6px !important;
}

.navbar-download-resume-btn {
  background: #333 !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  padding: 4px 10px !important;
  margin-left: 10px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}

.navbar-download-resume-btn:hover {
  background: #555 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.artwork-gallery {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.artwork-gallery .MuiGrid-container {
  margin-left: 0;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

.artwork-gallery .MuiGrid-item {
  display: flex;
  min-width: 0;
}

.artwork-gallery .MuiPaper-root,
.artwork-gallery .MuiCard-root {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 901px) {
  .artwork-gallery-row {
    align-items: stretch;
  }

  .artwork-gallery-row > * {
    display: flex;
    flex: 1 1 0;
    max-width: none !important;
    min-width: 0;
  }

  .artwork-gallery .MuiPaper-root,
  .artwork-gallery .MuiCard-root {
    height: 100%;
  }

  .artwork-gallery .MuiCardMedia-root {
    width: 100% !important;
    height: clamp(260px, 24vw, 360px) !important;
    margin: 0 !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .artwork-gallery .MuiCardContent-root {
    padding: 16px 16px 20px;
  }
}

@media (max-width: 900px) {
  .home-one {
    grid-template-columns: 1fr;
  }

  .pages {
    padding: 16px;
  }

  .programmer-profile-pages {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  header .container {
    justify-content: center;
    padding: 10px 12px;
  }

  .navbar-button-color {
    font-size: 0.85rem;
  }

  .navbar-download-resume-btn {
    margin-left: 0 !important;
  }

  .general-details,
  .work-experience-details,
  .education-details,
  .current-skill-heading,
  .current-skill-details,
  .full-skill-heading,
  .devlink-heading,
  .responsive-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 900px) {
  .pages {
    padding: 12px;
  }

  .artwork-gallery {
    padding: 12px 0 !important;
  }

  .artwork-gallery-row {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 8px;
  }

  .artwork-gallery-row > * {
    display: block !important;
    flex: 0 0 100% !important;
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .artwork-gallery-row > * + * {
    margin-top: 16px;
  }

  .artwork-gallery .MuiPaper-root,
  .artwork-gallery .MuiCard-root {
    padding: 12px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .artwork-gallery .MuiCardMedia-root {
    width: min(100%, calc(100vw - 72px)) !important;
    max-width: calc(100vw - 72px) !important;
    height: min(70vw, 380px) !important;
    margin: 8px auto !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .artwork-gallery .MuiCardContent-root {
    padding-top: 0;
    overflow-wrap: anywhere;
  }

  .artwork-heading {
    padding: 16px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  header .container {
    align-items: center;
    text-align: left;
  }

  .navbar-right-section {
    justify-content: center;
  }

  .navbar-mobile-container {
    min-height: 56px;
    padding: 8px 12px !important;
  }

  .navbar-download-resume-btn-mobile {
    min-width: auto !important;
    padding: 4px 10px !important;
    font-size: 0.7rem !important;
    line-height: 1.1 !important;
  }

  .navbar-download-resume-btn-mobile .MuiButton-startIcon {
    margin-right: 4px !important;
  }

  .home-github {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}


/*# sourceMappingURL=main.f8310e44.css.map*/