<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Basic Styles */

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

html {
  font-size: 62.5%;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Typography */

h1 {
  color: #fff;
  font-size: 5rem;
  font-weight: 300;
}

h2 {
  color: #fff;
  font-size: 2.441rem;
  font-weight: 300;
  margin: 100px 0 30px;
}

p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 3rem;
  margin: 45px 0;
}

/* Header */

header {
  background-color: #323746;
  display: grid;
  grid-template: 1.5fr 3fr 0.5fr / 200px 3.5fr 2fr 200px;
  grid-template-areas:
    '. headerOne headerTwo .'
    '. myName intro .'
    '. . . .';
  height: 100vh;
  min-height: 750px;
  width: 100vw;
}

/* Navigation */

nav {
  grid-area: headerTwo;
}

nav ul {
  color: #fff;
  display: flex;
  font-size: 2.8rem;
  gap: 40px;
  justify-content: flex-start;
  list-style-type: none;
  margin-top: 100px;
}

nav ul a {
  color: #fff;
  text-decoration: none;
  transition: 0.7s ease;
}

nav ul a:hover {
  color: #ffc25b;
  text-decoration: none;
}

/* Hero Section */

section.name {
  font-weight: 600;
  grid-area: myName;
}

section.my-intro {
  grid-area: intro;
  padding-top: 80px;
}

.icons {
  color: #ffc25b;
  grid-area: headerOne;
  margin-top: 90px;
}

.icons ul a {
  color: #ffc25b;
  text-decoration: none;
}

.icons ul {
  display: flex;
  gap: 15px;
  list-style-type: none;
}

.my-name {
  color: #fff;
  font-size: 9.313rem;
  padding-top: 80px;
}

.letter-color-one {
  color: #fff;
}

.letter-color-two {
  color: #ffc25b;
}

.social-media-icons {
  color: #fff;
}

.social-media-icons ul {
  display: flex;
  gap: 30px;
  list-style-type: none;
  margin-top: 80px;
}

.social-media-icons a {
  color: #fff;
}

.social-media-icons a:hover {
  color: #ffc25b;
}

.introduction {
  color: #9999a3;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

/* Buttons */

button {
  background-color: #ffc25b;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  height: 50px;
  padding: 10px;
  width: 150px;
}

button a {
  color: #323746;
  text-decoration: none;
}

button:hover {
  background-color: #fff;
  transition: 0.7s ease;
}

/* Main Sections */

.skills-section,
.projects-section {
  width: 100vw;
}

/* Main Section One - Skills &amp; Tools */

.skills-section {
  background-color: #252734;
  display: grid;
  grid-template: 0.5fr 0.5fr auto / 200px auto 200px;
  grid-template-areas:
    '. skillsIntroOne .'
    '. skillsIntroTwo .'
    '. skillsIcons .';
  height: auto;
  min-height: 650px;
}

.skills-title {
  color: #fff;
  font-size: 1.953rem;
  font-weight: 300;
  grid-area: skillsIntroOne;
  padding-top: 100px;
}

.skills-title h2 {
  margin: 0;
}

.skills-description {
  color: #fff;
  font-size: 2.441rem;
  font-weight: 600;
  grid-area: skillsIntroTwo;
}

.my-skills {
  color: #fff;
  grid-area: skillsIcons;
  padding-top: 15px;
}

.my-skills p {
  font-size: 1.953rem;
  font-weight: 300;
  line-height: 3rem;
}

.skills-icons,
.tech-stack-used {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 50px 0 100px 0;
}

.skills-icons-text,
.tech-stack-used {
  color: #fff;
  font-size: 1.563rem;
  padding-top: 15px;
  text-align: center;
}

.rotate:hover {
  animation: rotate 0.5s infinite;
  cursor: pointer;
  text-align: center;
}

.skill {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 10rem;
  justify-content: center;
  width: 10rem;
}

/* Main Section Two - Project One */

.projects-section {
  background-color: #323746;
  display: grid;
  gap: 20px;
  grid-template: 1fr / 200px 2fr 1fr 200px;
  grid-template-areas: '. project-one-image project-one-description .';
  height: auto;
  min-height: 650px;
  padding: 100px 0 100px 0;
}

.projects-section img {
  height: auto;
  width: 800px;
}

.project-image {
  grid-area: project-one-image;
}

.project-description {
  grid-area: project-one-description;
}

.project-buttons {
  display: flex;
  gap: 25px;
}

.main-section-three {
  background-color: #252734;
}

.main-section-four {
  background-color: #323746;
}

.main-section-five {
  background-color: #252734;
}

#vs-code,
#responsive-design,
#restful-api,
#tailwind-css,
#jest,
#typescript {
  background-color: #fff;
  width: 67px;
}

#redux-skill {
  background-color: #fff;
  width: 68px;
}

#redux-app {
  background-color: #fff;
  width: 60px;
}

#firebase-skill {
  width: 68px;
}

#firebase-app {
  width: 60px;
}

#github-button {
  align-items: center;
  background-color: #fff;
  display: flex;
  gap: 10px;
}

#github-button:hover {
  background-color: #ffc25b;
  transition: 0.7s ease;
}

#restful-api-projects {
  background-color: #fff;
  height: 56px;
  margin-top: 3px;
  width: 62.5px;
}

/* Main Section 3 - Project 2 */
/* Main Section 4 - Project 3 */
/* Main Section 5 - Project 3 */

/* Footer */

.footer {
  align-items: center;
  background: #252734;
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 40rem;
  justify-content: center;
}

.footer .icons {
  margin-top: 0;
}

.footer .social-media-icons ul {
  margin-top: 0;
  color: #fff;
}

.copyright {
  color: #fff;
  font-size: 2rem;
}

.copyright a {
  color: #ffc25b;
  text-decoration: none;
  margin-left: 10px;
}

.copyright a:hover {
  color: #fff;
}

#email-address {
  color: #fff;
  font-size: 2rem;
}

#email-address a {
  color: #ffc25b;
  text-decoration: none;
  margin-left: 10px;
}

#email-address a:hover {
  color: #fff;
}

/* Animations */

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* On tablets */

@media screen and (max-width: 1450px) {
  .projects-section {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
    min-height: 650px;
    padding: 100px 50px 0 50px;
  }
  .project-description {
    width: 75%;
  }
}

@media screen and (max-width: 1250px) {
  header,
  .skills-section {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 0px 50px 50px 50px;
    width: auto;
  }
}

@media screen and (max-width: 900px) {
  .projects-section img {
    height: auto;
    width: 500px;
  }
}

/* On mobiles */

@media screen and (max-width: 414px) {
  header {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 0px 50px 50px 50px;
    width: auto;
  }
  .my-name {
    font-size: 5rem;
  }
  nav ul {
    font-size: 1.6rem;
  }
  .skills-icons {
    align-items: center;
    gap: 2rem;
    justify-content: space-evenly;
    text-align: center;
  }
  .projects-section img {
    height: auto;
    width: 350px;
  }
  .skill {
    width: 8.8rem;
  }
  .skills-icons,
  .tech-stack-used {
    flex-direction: column;
  }
}
</pre></body></html>