h1, h2, h3, h4, h5 {
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  font-size: 3.5rem;
}
@media screen and (max-width: 2082px) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1000px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
  text-decoration: underline;
}
@media screen and (max-width: 2082px) {
  h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 2rem;
}
@media screen and (max-width: 2082px) {
  h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1000px) {
  h3 {
    font-size: 1.2rem;
  }
}

h4 {
  font-size: 2rem;
}
@media screen and (max-width: 2082px) {
  h4 {
    font-size: 1rem;
  }
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1rem;
}

a {
  color: #d7d7d7;
}

nav {
  padding: 1rem 1.5rem;
  background-color: #111010;
  width: 100%;
  font-size: 1rem;
  position: relative;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: left;
}
@media screen and (max-width: 1000px) {
  nav {
    justify-content: center;
  }
}
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
nav ul li a {
  text-decoration: none;
}
nav ul li a:hover {
  text-decoration: underline;
}

section#about-section ul {
  list-style: none;
}
section#about-section .intro ul.whoami {
  margin: 1rem 0;
  list-style: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2.2rem;
  color: #a5a5a5;
  display: inline-block;
}
@media screen and (max-width: 2082px) {
  section#about-section .intro ul.whoami {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1000px) {
  section#about-section .intro ul.whoami {
    font-size: 1.2rem;
    margin: 0;
  }
}
section#about-section .intro ul.whoami li {
  margin: 0.8rem 0;
  transform-origin: left;
  transition: ease-in-out 0.2s;
  display: flex;
  align-items: stretch;
  gap: 0.8rem;
}
section#about-section .intro ul.whoami li::before {
  content: "";
  display: inline-block;
  background-color: #a5a5a5;
  width: 3px;
  transition: ease-in-out 0.2s;
}
@media screen and (max-width: 1000px) {
  section#about-section .intro ul.whoami li::before {
    display: none;
  }
}
section#about-section .intro ul.whoami li:hover {
  transform: scale(1.2);
}
section#about-section .intro ul.whoami li:hover::before {
  width: 0.7rem;
}
section#about-section .intro ul.whoami li span {
  display: inline-block;
}
section#about-section .intro ul.whoami li.student:hover {
  color: #d3c366;
}
section#about-section .intro ul.whoami li.student:hover::before {
  background-color: #d3c366;
}
section#about-section .intro ul.whoami li.programmer:hover {
  color: #3c4fa7;
}
section#about-section .intro ul.whoami li.programmer:hover::before {
  background-color: #3c4fa7;
}
section#about-section .intro ul.whoami li.foss-enthusiast:hover {
  color: #4da05b;
}
section#about-section .intro ul.whoami li.foss-enthusiast:hover::before {
  background-color: #4da05b;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.terminal {
  width: 100%;
  flex: 1;
  background-color: #111010;
  border-radius: 10px;
  line-height: 1.8;
}
.terminal .title-bar {
  width: 100%;
  min-height: 1rem;
  background-color: #d7d7d7;
  color: #111010;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 0.2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.terminal .title-bar .shell-btns {
  display: flex;
  gap: 0.5rem;
}
.terminal .title-bar .shell-btns .shell-btn {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50px;
  background-color: black;
}
.terminal .title-bar .shell-btns .shell-btn.minimize {
  background-color: #d3c366;
}
.terminal .title-bar .shell-btns .shell-btn.maximize {
  background-color: #69d366;
}
.terminal .title-bar .shell-btns .shell-btn.close {
  background-color: #d36666;
}
.terminal ul.terminal-lines {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}
.terminal ul.terminal-lines > li {
  user-select: text;
}
.terminal ul.terminal-lines > li strong {
  color: white;
}
.terminal ul.terminal-lines > li p {
  color: #c0c0c0;
}
.terminal ul.terminal-lines > li .dal {
  color: #d3c366;
}
.terminal ul.terminal-lines > li ul.shell-list li span {
  text-decoration: underline;
  text-decoration-color: #a5a5a5;
}
.terminal ul.terminal-lines > li ul.shell-list li span#french-tooltip, .terminal ul.terminal-lines > li ul.shell-list li span#italian-tooltip {
  position: relative;
  display: inline-block;
}
.terminal ul.terminal-lines > li ul.shell-list li span#french-tooltip div, .terminal ul.terminal-lines > li ul.shell-list li span#italian-tooltip div {
  display: none;
  position: fixed;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: #1f1d1d;
  padding: 0.5rem 1rem;
  border: #a5a5a5 1px solid;
  z-index: 9999;
}
.terminal ul.terminal-lines > li ul.shell-list li span#french-tooltip:hover div, .terminal ul.terminal-lines > li ul.shell-list li span#italian-tooltip:hover div {
  display: flex;
}
.terminal ul.terminal-lines > li ul.shell-list li::before {
  content: "- ";
}
.terminal ul.terminal-lines > li::selection {
  color: #111010;
  background-color: #d7d7d7;
}
.terminal ul.terminal-lines > li::before {
  content: "~ $";
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .projects {
    gap: 1.5rem;
  }
}

.project-card p {
  margin: 1rem 0;
}
.project-card p, .project-card a {
  font-size: 1.5rem;
}
@media screen and (max-width: 2082px) {
  .project-card p, .project-card a {
    font-size: 1.2rem;
  }
}

.articles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .articles {
    gap: 1.5rem;
  }
}

.article-card p {
  margin: 1rem 0;
}
.article-card a {
  margin-top: 2rem;
}
.article-card p, .article-card a {
  font-size: 1.5rem;
}
@media screen and (max-width: 2082px) {
  .article-card p, .article-card a {
    font-size: 1.2rem;
  }
}

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

body {
  font-family: "JetBrains Mono";
  color: #d6d6d6;
  background-color: #3c4fa7;
  background-image: url("../images/pexels-rahulp9800-1933900.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body:has(:scroll(:below(100px))) {
  background-color: red;
  overflow: hidden;
}
@media screen and (max-width: 2082px) {
  body {
    overflow-y: auto;
  }
}
body main {
  flex: 1;
  width: 100%;
  display: flex;
  background-color: rgba(31, 29, 29, 0.8470588235);
}
@media screen and (max-width: 2082px) {
  body main {
    flex-direction: column;
  }
}
body main section {
  overflow-y: auto;
  flex: 1;
  user-select: none;
  padding: 10rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: space-between;
}
@media screen and (max-width: 2082px) {
  body main section {
    padding: 5rem 10rem;
    column-gap: 1rem;
    overflow-y: none;
  }
}
@media screen and (max-width: 1000px) {
  body main section {
    padding: 3rem 2.1rem;
    column-gap: 1rem;
    gap: 2.5rem;
    overflow-y: hidden;
  }
}

.cursor-blink {
  content: "a";
  background-color: #fff;
  width: 0.8rem;
  height: 1.2rem;
  animation: blink 1.5s infinite;
  display: inline-flex;
  vertical-align: middle;
}

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