@charset "UTF-8";
/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html {
  color-scheme: dark-light;
  font-size: 10px;
}
@media (max-width: 768px) {
  html {
    font-size: 12px;
  }
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

input, textarea, button, select {
  font: inherit;
}

body {
  min-height: 100vh;
  background-color: #011627;
}

.mainDiv {
  height: 100%;
  position: relative; /* Ensure child elements can be positioned relative to this */
  overflow: hidden; /* Prevent overflow of the watermark */
  width: 100%; /* Set width of mainDiv as needed */
  height: 100vh;
}

/* Watermark */
.watermark {
  background: url("../images/BackgroundBlurs.png");
  background-size: cover;
  width: 700px;
  height: 700px;
  position: absolute;
  top: 10%;
  left: 50%;
  overflow: hidden;
}

/* Navigation */
nav {
  font-family: "Fira Code", sans-serif;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
}
nav .floatLeft {
  display: flex;
}
@media (max-width: 768px) {
  nav .floatLeft {
    flex-direction: column;
  }
}
nav .floatRight {
  display: flex;
}
@media (max-width: 768px) {
  nav .floatRight {
    flex-direction: column;
  }
}
nav .navItem a {
  display: block;
  color: #607B96;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
nav ul {
  list-style-type: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
nav li:first-child {
  width: 20%;
}
nav li {
  float: left;
}
nav li a {
  display: block;
  color: #607B96;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
nav li a:hover:not(.active) {
  background-color: #111;
}
nav #nametab:hover:not(.active) {
  background-color: inherit;
}
nav .active {
  color: white;
  border-bottom: 3px solid #FEA55F;
}

/* Title */
.title {
  color: #E5E9F0;
  font-family: "Fira Code", sans-serif;
  padding: 150px;
}
@media (max-width: 768px) {
  .title {
    padding: 50px;
  }
}
.title__prefix {
  font-size: 1.5rem;
}
.title__name {
  font-size: 4rem;
}
.title__position {
  font-size: 3rem;
  color: #4D5BCE;
}
.title__msg {
  font-size: 1.5rem;
  color: #607B96;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .title__msg {
    font-size: 0.8rem;
  }
}
.title__link {
  font-size: 1.8rem;
  color: #E99287;
}
@media (max-width: 768px) {
  .title__link {
    font-size: 1rem;
  }
}
.title__link--type {
  color: #4D5BCE;
}
.title__link--name {
  color: #43D9AD;
}
.title__link--sign {
  color: white;
}
.title__link a {
  text-decoration: none;
}
.title__link a:visited {
  color: inherit;
  text-decoration: inherit;
}

/* Project Main */
.projectmain {
  display: flex;
  height: 100vh;
}

.sidebar {
  height: 100%;
  width: 20%;
}
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
}

.content {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

/* Project List */
.projectlist {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
}
@media (max-width: 768px) {
  .projectlist {
    flex-direction: column;
  }
}
.projectlist__cardholder {
  flex: 0 0 33.333333%;
  padding: 5px;
}
.projectlist__name {
  font-family: "Fira Code", sans-serif;
  font-size: 1.2rem;
  color: #5565E8;
  margin-bottom: 10px;
}
.projectlist__card {
  background-color: #011221;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.projectlist__card--thumbnail {
  background: url("../images/thumb_proj1.png");
  background-size: cover;
  background-position: center;
  height: 100px;
}
.projectlist__card--content {
  font-family: "Fira Code", sans-serif;
  font-size: 1.2rem;
  color: #607B96;
  padding: 20px;
}
.projectlist__card--content button {
  padding: 5px 10px;
  margin-top: 10px;
  background-color: #1C2B3A;
  color: white;
  border: none;
  border-radius: 8px;
}

/* About Me */
.aboutmemain {
  height: 100vh;
  display: flex;
}

.aboutmemain__content {
  color: white;
  line-height: 1.8;
  font-size: 1.6rem;
  padding: 60px 40px;
  width: 70%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.aboutmemain__content p {
  text-align: justify;
}
@media (max-width: 768px) {
  .aboutmemain__content {
    width: 100%;
    padding: 40px 30px;
    font-size: 1.5rem;
  }
}

.aboutmemain h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f9a825;
  border-bottom: 2px solid #f9a825;
  padding-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .aboutmemain h1 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.3rem;
  }
}

.aboutmemain p {
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.aboutmemain p:hover {
  color: #f9a825;
}

/* Resume View */
.resumeview {
  width: 100%;
  height: 100%;
}
.resumeview embed {
  display: block;
  margin: 20px auto;
}

/* Project Details */
.projectdetails {
  background: #2b2b2b;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.projectdetails h1 {
  color: #f9a825;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #f9a825;
  padding-bottom: 0.5rem;
}

.projectdetails h3 {
  color: #fff;
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.projectdetails p,
.projectdetails ul {
  color: #ddd;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.projectdetails ul {
  padding-left: 1.5rem;
}

.projectdetails ul li {
  position: relative;
  margin-bottom: 0.5rem;
}

.projectdetails ul li::before {
  content: "•";
  color: #f9a825;
  position: absolute;
  left: -1.5rem;
  font-size: 1.5rem;
}/*# sourceMappingURL=style.css.map */