/* 
  do in terminal in proj root before making changes:
    sass --watch ./styles/index.scss ./styles/index.css
*/
@font-face {
  font-family: "Roboto Mono";
  src: url("../assets/RobotoMono-VariableFont_wght.ttf");
}
body {
  font-family: "Roboto Mono", monospace;
  color: rgb(193, 197, 197);
  background-color: rgb(30, 33, 58);
  margin: 0;
  width: 100vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  scroll-behavior: smooth;
}

#sidebar {
  width: 20%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  border-right: 2px solid white;
}
#sidebar div {
  margin: 1%;
  padding: 4%;
  text-decoration: none;
  color: rgb(76, 190, 152);
  width: 50%;
}
#sidebar div:hover {
  color: aquamarine;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

#main-content {
  width: 80%;
  height: 100vh;
  overflow-y: scroll;
  box-sizing: border-box;
}

.section-div {
  max-width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 5% 7% 5% 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-div a {
  text-decoration: none;
  color: aqua;
}
.section-div a:hover {
  color: rgb(33, 178, 211);
}
.section-div h1 {
  font-size: 3rem;
  color: white;
}
.section-div h2 {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}
.section-div .h-bar {
  display: block;
  background-color: mediumpurple;
  width: 100%;
  height: 2px;
}

#projects ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  margin: 3%;
}
#projects ::-webkit-scrollbar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0);
}
#projects ::-webkit-scrollbar-thumb {
  background: rgb(113, 122, 156);
  border-radius: 10px;
}
#projects ::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#projects-div {
  width: 100%;
  height: 100%;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  margin-top: 2%;
}

.project-card {
  min-width: 30%;
  height: 85%;
  background-color: rgb(58, 61, 94);
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 0.5rem;
  margin-right: 2%;
  padding: 2%;
  font-size: 0.9rem;
  flex: 0 0 150px;
  justify-content: center;
  align-items: center;
}
.project-card .proj-title-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  height: 2rem;
  max-height: 2rem;
}
.project-card .proj-title-div .proj-title {
  font-size: 1.3rem;
  color: white;
}
.project-card .proj-title-div .icon-div {
  width: 21%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.project-card .proj-title-div .icon-div .link-icon {
  display: block;
  height: 100%;
  align-self: center;
  justify-self: center;
  height: 80%;
  border-radius: 3px;
}
.project-card .proj-title-div .icon-div .link-icon img {
  height: 100%;
}
.project-card .proj-title-div .icon-div .link-icon:hover {
  outline: 2px solid white;
}
.project-card .proj-title-div .icon-div .github-icon {
  display: block;
  height: 100%;
  align-self: center;
  justify-self: center;
  border-radius: 30px;
}
.project-card .proj-title-div .icon-div .github-icon img {
  height: 100%;
}
.project-card .proj-title-div .icon-div .github-icon:hover {
  outline: 2px solid white;
}
.project-card img {
  width: 100%;
}
.project-card .tech-tag-div {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.project-card .tech-tag-div .tech-tag {
  height: 0.2rem;
  margin-right: 2%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.7rem 1.3rem 0.7rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.selectedPageBtn {
  color: aquamarine !important;
  font-size: 1.2rem;
  font-weight: bold;
}

/*# sourceMappingURL=index.css.map */
