body,
a {
  color: #fff;
}

h1,
h2,
h3,
h4,
a {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-weight: 300;
  font-size: 24px;
}

body {
  font-family: "Open Sans", sans-serif;
}

:root {
  --scroll: 0;
}

* {
  margin: 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.container-s {
  max-width: 1000px;
  margin: 0 auto;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes arrowBounce {
  0%, 30%, 50%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInBottom50 {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 0.5;
    transform: translateY(0);
  }
}
@keyframes load {
  25% {
    box-shadow: -20px -20px, 20px 20px;
  }
  50% {
    box-shadow: 0px -20px, 0px 20px;
  }
  75% {
    box-shadow: 20px -20px, -20px 20px;
  }
  100% {
    box-shadow: 20px 0px, -20px 0px;
  }
}
@keyframes loadFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  100% {
    visibility: hidden;
  }
}
@keyframes loadFadeIn {
  0% {
    opacity: 0;
    visibility: unset;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate2 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  background-color: black;
  color: white;
  z-index: 5;
  animation: loadFadeOut 0.5s forwards;
  animation-delay: 0.5s;
}
#loading-screen p {
  text-align: center;
}
#loading-screen .loader {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: -20px 0px, 20px 0px;
  animation: load 1s infinite;
}

body,
a {
  color: #fff;
}

body {
  background-color: #000;
}

header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: calc(100% - 6rem);
  top: 2rem;
  padding: 0 3rem;
  z-index: 10;
}
header h1 {
  display: flex;
  align-items: center;
}
header .pill-wrapper {
  position: fixed;
  left: 50%;
  translate: -50% 0;
  background-color: rgba(60, 60, 60, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.1rem;
  border-radius: 2rem;
  box-shadow: inset -2px 2px 5px #444;
  display: flex;
  align-items: center;
  height: 2rem;
  border: 1px solid #333;
  transition: 0.5s ease;
}
header .pill-wrapper:hover {
  background-color: rgba(60, 60, 60, 0.3);
}
header .pill-wrapper p {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 1.8rem;
  border-radius: 2rem;
  border: none;
  background: none;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  transition: 0.5s ease;
}
header .pill-wrapper p:hover {
  box-shadow: inset 4px 0 10px rgba(60, 60, 60, 0.6);
  cursor: pointer;
}
header div.nav-indicator {
  position: absolute;
  background-color: rgba(60, 60, 60, 0.2);
  width: 4.8rem;
  height: 1.8rem;
  border-radius: 2rem;
  transition: left 0.5s ease;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}
header nav {
  display: flex;
  align-items: center;
}
header nav button {
  display: none;
}
header nav .nav-list {
  display: flex;
  padding-left: 0;
  gap: 1rem;
}
header nav .nav-list li {
  list-style: none;
}
header nav .nav-list li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, white, white 50%, #888 50%);
  background-size: 200% 100%;
  background-position: -100%;
  transition: all 0.3s ease-in-out;
}
header nav .nav-list li a:before {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  bottom: 5px;
  left: 0;
  bottom: -3px;
  z-index: 0;
  position: absolute;
  background: white;
  transition: all 0.3s ease-in-out;
}
header nav .nav-list li a:hover {
  background-position: 0%;
}
header nav .nav-list li a:hover:before {
  width: 100%;
}

@media screen and (max-width: 768px) {
  header {
    justify-content: space-between;
    align-items: center;
  }
  header h1 {
    position: absolute;
    top: -1000%;
  }
  header .pill-wrapper {
    position: relative;
    left: unset;
    translate: unset;
  }
  header nav .nav-list li a {
    -webkit-text-fill-color: #fff;
  }
  header nav .nav-list li a:before {
    display: none;
  }
}
@media screen and (max-width: 420px) {
  header {
    justify-content: space-between;
    align-items: center;
  }
  header h1 {
    position: absolute;
    top: -1000%;
  }
  header .pill-wrapper {
    position: relative;
    left: unset;
    translate: unset;
  }
  header nav {
    position: relative;
  }
  header nav .menu-toggle {
    display: unset;
    position: relative;
    border: 1px solid #333;
    background-color: unset;
    width: 3rem;
    height: 3rem;
    color: #fff;
    border-radius: 15px;
    font-size: 1rem;
    background-color: rgba(60, 60, 60, 0.2);
    backdrop-filter: blur(10px);
    transition: 0.5s ease-in-out;
  }
  header nav .menu-toggle:hover {
    cursor: pointer;
    background-color: rgba(60, 60, 60, 0.3);
  }
  header nav .menu-toggle.menu-open .menu-icon {
    opacity: 0;
    animation: rotate1 0.5s;
  }
  header nav .menu-toggle.menu-open .close-icon {
    opacity: 1;
    animation: rotate1 0.5s;
  }
  header nav .menu-toggle.menu-close .menu-icon {
    opacity: 1;
    animation: rotate2 0.5s;
  }
  header nav .menu-toggle.menu-close .close-icon {
    opacity: 0;
    animation: rotate2 0.5s;
  }
  header nav .menu-toggle .menu-icon,
  header nav .menu-toggle .close-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s ease-in;
  }
  header nav .menu-toggle .menu-icon svg,
  header nav .menu-toggle .close-icon svg {
    width: 80%;
    height: 80%;
  }
  header nav .menu-toggle .close-icon {
    opacity: 0;
  }
  header nav .nav-list {
    position: absolute;
    display: unset;
    font-size: 1rem;
    top: 140%;
    right: 0;
    transition: 0.5s ease;
    background-color: rgba(60, 60, 60, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 15px;
    border: 1px solid #333;
    overflow: hidden;
    opacity: 0;
    max-height: 0%;
  }
  header nav .nav-list.active {
    opacity: 1;
    max-height: 140px;
  }
  header nav .nav-list li {
    padding: 1rem;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
  }
  header nav .nav-list li:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  header nav .nav-list li:hover {
    background-color: rgba(60, 60, 60, 0.2);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes arrowBounce {
  0%, 30%, 50%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInBottom50 {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 0.5;
    transform: translateY(0);
  }
}
@keyframes load {
  25% {
    box-shadow: -20px -20px, 20px 20px;
  }
  50% {
    box-shadow: 0px -20px, 0px 20px;
  }
  75% {
    box-shadow: 20px -20px, -20px 20px;
  }
  100% {
    box-shadow: 20px 0px, -20px 0px;
  }
}
@keyframes loadFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  100% {
    visibility: hidden;
  }
}
@keyframes loadFadeIn {
  0% {
    opacity: 0;
    visibility: unset;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotate1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate2 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
body,
a {
  color: #fff;
}

.banner {
  overflow: hidden;
  top: 0;
  width: 100%;
  translate: 0;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  display: flex;
  align-items: end;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.banner .window-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 80%;
  width: 80%;
  margin: 0 auto;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border: 1px solid #333;
  border-bottom: none;
  overflow: hidden;
  opacity: 0;
  animation: fadeInBottom 1s forwards;
  animation-delay: 0.5s;
}
.banner .window-container .title-bar {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: end;
  top: 0;
  height: 10%;
  width: 100%;
  background-color: rgba(50, 50, 50, 0.2);
}
.banner .window-container .title-bar svg {
  margin-right: 2rem;
}
.banner .window-container .banner-content {
  padding: 0 10%;
}
.banner .window-container .banner-content h2#intro-text {
  font-size: 3rem;
  margin-bottom: 3rem;
}
.banner .window-container .banner-content h2#intro-text span:nth-of-type(14) {
  color: #2ecc71;
}
.banner .window-container .banner-content h2#intro-text span:nth-of-type(15) {
  color: #1abc9c;
}
.banner .window-container .banner-content h2#intro-text span:nth-of-type(16) {
  color: #f1c40f;
}
.banner .window-container .banner-content h2#intro-text span:nth-of-type(18), .banner .window-container .banner-content h2#intro-text span:nth-of-type(19) {
  color: #e74c3c;
}
.banner .window-container .banner-content h2#intro-text.animate-words span {
  display: inline-block;
  opacity: 0;
  animation: fadeInLeft 1s forwards;
  margin-right: 0.75rem;
}
.banner .window-container .banner-content p {
  z-index: 1;
  font-size: 1.5rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  width: 100%;
  text-align: end;
  animation: fadeInBottom 1s forwards;
  animation-delay: 4.5s;
  opacity: 0;
}
.banner .window-container .banner-content p:last-of-type {
  margin-bottom: 2rem;
  color: #ababab;
}
.banner .window-container .banner-content .arrow {
  width: 100%;
  display: flex;
  justify-content: center;
  animation: fadeInBottom 1s;
  animation-fill-mode: forwards;
  animation-delay: 5s;
  opacity: 0;
}
.banner .window-container .banner-content .arrow svg {
  animation: arrowBounce 3s infinite;
}
.banner .circle {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  mix-blend-mode: hard-light;
  filter: blur(200px);
  transition: 3s linear;
  z-index: -1;
}
.banner .circle.circle1 {
  background-color: rgb(65, 5, 5);
  top: 50px;
  left: -100px;
}
.banner .circle.circle2 {
  background-color: rgb(67, 29, 115);
  top: 200px;
  right: -100px;
}
.banner .bottom-overlay {
  z-index: 3;
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  width: 100%;
  height: 10%;
}

@media screen and (max-width: 1280px) {
  .banner .window-container .banner-content h2#intro-text {
    font-size: 2.5rem;
  }
  .banner .window-container .banner-content p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .banner .window-container {
    width: 90%;
  }
  .banner .window-container .banner-content {
    padding: 0 3rem;
  }
  .banner .window-container .banner-content h2#intro-text {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    max-height: 500px;
  }
  .banner .window-container .banner-content {
    padding: 0 2rem;
  }
  .banner .window-container .banner-content h2#intro-text {
    font-size: 1.75rem;
  }
  .banner .window-container .banner-content p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 420px) {
  .banner .window-container {
    width: 100%;
    border: none;
  }
  .banner .window-container .title-bar {
    display: none;
  }
  .banner .window-container .banner-content h2#intro-text {
    font-size: 1.5rem;
  }
  .banner .window-container .banner-content p {
    font-size: 1rem;
  }
}
#projects .project-container {
  width: 60%;
  margin: 0 auto;
  height: 100vh;
  max-height: 800px;
  display: flex;
  align-items: center;
}
#projects .project-container .project-window {
  height: 80%;
  border: 1px solid #333;
  width: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 3px 10px 5px 20px rgba(23, 23, 23, 0.3), 5px 5px 5px 30px rgba(27, 27, 27, 0.2);
}
#projects .project-container .project-window .project-heading {
  display: flex;
  align-items: center;
  padding: 2rem 4rem;
  justify-content: space-between;
}
#projects .project-container .project-window .project-heading .project-title-container {
  color: #aaa;
  transition: 0.5s ease-in-out;
  width: 80%;
}
#projects .project-container .project-window .project-heading .project-title-container h2 {
  margin-bottom: 1rem;
}
#projects .project-container .project-window .project-heading .project-title-container p span {
  font-weight: 600;
}
#projects .project-container .project-window .project-heading .project-arrow {
  width: 4rem;
  transition: 0.5s ease-in-out;
}
#projects .project-container .project-window .project-thumbnail {
  width: 80%;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #aaa;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: rgba(50, 50, 50, 0.4);
}
#projects .project-container .project-window .project-thumbnail .project-title-bar {
  padding: 1rem;
}
#projects .project-container .project-window .project-thumbnail .project-title-bar .window-buttons {
  display: flex;
  justify-content: end;
  gap: 1.5rem;
}
#projects .project-container .project-window .project-thumbnail .project-title-bar .search-bar {
  background-color: rgba(100, 100, 100, 0.3);
  width: 90%;
  height: 1rem;
  margin: 0 auto;
  margin-top: 1rem;
  border-radius: 15px;
}
#projects .project-container .project-window .project-thumbnail .thumbnail-img {
  position: relative;
  width: 100%;
}
#projects .project-container .project-window .project-thumbnail .thumbnail-img img {
  width: 100%;
}
#projects .project-container .project-window .project-thumbnail .thumbnail-img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background-color: #000;
  transition: 0.5s ease-in-out;
}
#projects .project-container .project-window .project-background {
  position: absolute;
  background-color: #888;
  width: 100%;
  height: 30%;
  top: 0;
  filter: blur(200px);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
#projects .project-container .project-window:hover {
  cursor: pointer;
}
#projects .project-container .project-window:hover .project-background {
  height: 40%;
  background-color: var(--bg-color);
}
#projects .project-container .project-window:hover .project-thumbnail {
  transform: translate(-50%, -15px);
}
#projects .project-container .project-window:hover .project-thumbnail .overlay {
  opacity: 0;
}
#projects .project-container .project-window:hover .project-arrow {
  transform: translateX(16px);
}
#projects .project-container .project-window:hover .project-title-container {
  color: #fff;
}

@media screen and (max-width: 1280px) {
  #projects .project-container {
    width: 80%;
    max-height: 600px;
  }
}
@media screen and (max-width: 768px) {
  #projects .project-container {
    width: 90%;
  }
  #projects .project-container .project-window .project-heading {
    padding: 1rem 2rem;
  }
  #projects .project-container .project-window .project-heading .project-title-container {
    color: #fff;
  }
  #projects .project-container .project-window .project-heading .project-title-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  #projects .project-container .project-window .project-thumbnail {
    top: 35%;
    width: 90%;
  }
  #projects .project-container .project-window .project-thumbnail .thumbnail-img .overlay {
    opacity: 0;
  }
  #projects .project-container .project-window .project-background {
    background-color: var(--bg-color);
    height: 40%;
  }
}
@media screen and (max-width: 420px) {
  #projects .project-container {
    max-height: 400px;
  }
  #projects .project-container .project-window .project-heading .project-title-container h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  #projects .project-container .project-window .project-heading .project-title-container p {
    font-size: 0.75rem;
  }
  #projects .project-container .project-window .project-heading .project-arrow {
    width: 2rem;
  }
  #projects .project-container .project-window .project-thumbnail .project-title-bar {
    padding: 0.5rem;
  }
  #projects .project-container .project-window .project-thumbnail .project-title-bar .window-buttons svg {
    width: 0.5rem;
  }
  #projects .project-container .project-window .project-thumbnail .project-title-bar .search-bar {
    margin-top: 0.5rem;
    height: 0.5rem;
  }
}
footer {
  border-top: 1px solid #333;
  padding: 3rem;
}
footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  width: 15rem;
  margin-bottom: 3rem;
}
footer .footer-nav div {
  width: 50%;
}
footer .footer-nav div h3 {
  width: 100%;
  margin-bottom: 1rem;
}
footer .footer-nav div ul {
  list-style: none;
  padding-left: 0;
}
footer .footer-nav div ul li {
  margin-bottom: 1rem;
}
footer .footer-nav div ul li a {
  text-decoration: none;
  color: #888;
  transition: 0.3s ease-in-out;
  border-bottom: 1px solid black;
}
footer .footer-nav div ul li a:hover {
  border-bottom: 1px solid white;
  color: white;
}
footer p {
  text-align: center;
}

.introduction .introduction-wrapper {
  margin: 10rem auto 6rem auto;
}
.introduction .introduction-wrapper p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.introduction .introduction-wrapper h2 {
  font-size: 4rem;
}

.professional-journey,
.past-profession {
  display: flex;
  justify-content: space-around;
}
.professional-journey p,
.past-profession p {
  margin: 1rem auto;
  line-height: 1.5;
}
.professional-journey .left-section,
.professional-journey .right-section,
.past-profession .left-section,
.past-profession .right-section {
  width: 50%;
  padding: 2rem;
}

.key-benefits {
  display: flex;
  gap: 2rem;
  margin: 6rem auto;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 6rem;
}
.key-benefits .benefit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.key-benefits .benefit svg {
  width: 5rem;
  height: 5rem;
  padding: 1rem;
  border-radius: 50%;
  border: 1px solid #333;
  margin-bottom: 1rem;
}
.key-benefits .benefit h4 {
  width: 100%;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.resume-bg {
  background-color: #111;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  box-shadow: inset 0 0 20px rgb(0, 0, 0);
  margin: 6rem 0;
}

.resume {
  padding: 2rem;
}
.resume h2,
.resume h4,
.resume p {
  margin-bottom: 1rem;
}
.resume a {
  text-decoration: none;
  font-weight: bold;
  margin-right: 1rem;
  border-bottom: 1px solid #111;
  transition: 0.5s ease-in-out;
}
.resume a:hover {
  border-bottom: 1px solid #fff;
}

.about-img {
  border: 1px solid #333;
  border-radius: 2rem;
  padding: 1rem;
  background: rgb(34, 34, 34);
  background: linear-gradient(45deg, rgb(34, 34, 34) 0%, rgb(17, 17, 17) 100%);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
  margin: 0 auto;
}
.about-img img {
  border-radius: 1rem;
  width: 100%;
}

.outside-coding {
  margin: 6rem auto;
  padding: 6rem 2rem 2rem 2rem;
  border-top: 1px solid #333;
}
.outside-coding h2 {
  margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
  .introduction .introduction-wrapper {
    padding: 0 2rem;
  }
  .introduction .introduction-wrapper h2 {
    font-size: 3.5rem;
  }
  .key-benefits {
    padding: 3rem;
  }
  .key-benefits .benefit {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .introduction .introduction-wrapper h2 {
    font-size: 2rem;
  }
  .professional-journey,
  .past-profession {
    flex-direction: column;
    align-items: center;
  }
  .professional-journey .left-section,
  .professional-journey .right-section,
  .past-profession .left-section,
  .past-profession .right-section {
    width: 80%;
  }
  .key-benefits {
    flex-direction: column;
    gap: 4rem;
  }
  .key-benefits .benefit {
    justify-content: space-evenly;
    padding: 0 2rem;
    align-items: center;
  }
  .key-benefits .benefit svg {
    width: 4rem;
    height: 4rem;
  }
  .key-benefits .benefit .benefit-content {
    width: 60%;
  }
}
@media screen and (max-width: 420px) {
  .key-benefits {
    flex-direction: column;
    gap: 4rem;
  }
  .key-benefits .benefit .benefit-content {
    width: 100%;
  }
}
header .back-btn {
  position: fixed;
  background-color: rgba(60, 60, 60, 0.2);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 2rem;
  box-shadow: inset -2px 2px 5px #444;
  display: flex;
  align-items: center;
  height: 2rem;
  border: 1px solid #333;
  transition: 0.5s ease-in-out;
  color: white;
  font-size: 1rem;
  top: -4rem;
}
header .back-btn:hover {
  cursor: pointer;
  background-color: rgba(98, 98, 98, 0.2);
}

#project-page .background-gradient {
  position: absolute;
  background-color: var(--bg-color);
  width: 80%;
  height: 20%;
  top: 50px;
  filter: blur(200px);
  transition: 0.5s ease-in-out;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}
#project-page section {
  margin: 0 auto 6rem auto;
  width: 60%;
  border-bottom: 1px solid #333;
  padding-bottom: 6rem;
}
#project-page section:nth-of-type(1) {
  padding-top: 3rem;
}
#project-page section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}
#project-page section ul {
  list-style: none;
  padding-left: 0;
}
#project-page section ul li {
  margin-bottom: 1rem;
}
#project-page section ul li span {
  font-size: 1.25rem;
  font-weight: 700;
}
#project-page section.key-features {
  padding-top: 6rem;
  border-top: 1px solid #333;
}
#project-page section.purpose p {
  margin-bottom: 1rem;
}
#project-page section .illustrative-icon {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 1rem;
}
#project-page section .illustrative-icon svg {
  width: 2rem;
  height: 2rem;
  filter: drop-shadow(0 0 15px #fff);
}
#project-page .feature-showcase {
  background-color: #111;
  border-radius: 15px;
  border: 1px solid #333;
  padding: 3rem 1rem 1rem 1rem;
  margin-bottom: 6rem;
}
#project-page .feature-showcase h2 {
  text-align: center;
}
#project-page .feature-showcase .feature-img {
  width: 90%;
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid #333;
  margin: 0 auto;
  margin-bottom: 2rem;
  background: rgb(34, 34, 34);
  background: linear-gradient(45deg, rgb(34, 34, 34) 0%, rgb(17, 17, 17) 100%);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
}
#project-page .feature-showcase .feature-img img {
  border-radius: 5px;
  width: 100%;
  margin-bottom: 0.5rem;
}
#project-page .feature-showcase .feature-img figcaption {
  font-style: italic;
}
#project-page .title-banner {
  position: relative;
  width: 80%;
  max-height: 100vh;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1rem;
}
#project-page .title-banner h1 {
  margin-top: 4rem;
  font-size: 4rem;
  font-weight: 600;
}
#project-page .title-banner p:first-of-type {
  font-weight: 600;
  font-size: 2rem;
}
#project-page .title-banner p:last-of-type {
  margin-bottom: 3rem;
  font-size: 1.5rem;
}
#project-page .title-banner img {
  border: 3px solid #333;
  width: 80%;
  border-radius: 15px;
  opacity: 50%;
  animation: fadeInBottom50 1s forwards;
  animation-delay: 0.5s;
}
#project-page .title-banner .bottom-overlay {
  z-index: 3;
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  width: 100%;
  height: 50%;
}
#project-page .view-site {
  border: none;
  padding-bottom: 0;
}
#project-page .view-site p {
  margin-bottom: 1rem;
}
#project-page .view-site a {
  text-decoration: none;
  color: #ddd;
  border-bottom: 1px solid #000;
  transition: 0.5s ease-in-out;
  margin-right: 1rem;
}
#project-page .view-site a:hover {
  border-bottom: 1px solid #fff;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #project-page .title-banner {
    width: 100%;
  }
  #project-page section {
    width: 80%;
  }
}
@media screen and (max-width: 420px) {
  #project-page .title-banner h1 {
    font-size: 3rem;
  }
  #project-page .title-banner p:first-of-type {
    font-size: 1.5rem;
  }
  #project-page .title-banner p:last-of-type {
    font-size: 1rem;
  }
}
/*

@media screen and (max-width: 1280px) {

}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 420px) {

}

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