html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

strong {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  outline: none;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
}

*:focus {
  box-shadow: none !important;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

header {
  width: 100%;
  position: fixed;
  z-index: 1000;
  background: var(--dark-purple);
  font-family: var(--font-mono);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5rem;
}

.links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.links i {
  font-size: 1.4rem;
}

.links i:hover {
  color: var(--light-green);
  transition: 0.5s ease;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5.5rem;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
}

.nav-link {
  --bs-nav-link-color:var(--base-white);
  --bs-nav-link-hover-color:var(--light-green);
  animation-name: fade-in;
  animation-duration: 5s;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav-link.active {
  -webkit-text-decoration: underline var(--light-green);
          text-decoration: underline var(--light-green);
  transition: 0.5s ease;
}

#menu-resume {
  color: var(--light-green);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--base-white);
}

@media (max-width: 920px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 4rem;
    gap: 0;
    flex-direction: column;
    align-items: end;
    background: var(--dark-purple);
    text-align: end;
    transition: 0.3s;
    width: 100%;
  }
  .nav-link {
    margin: 10px 10px;
  }
  .nav-menu.active {
    left: 0;
    padding: 0 1.5rem;
  }
  .menu {
    padding: 1rem 1.75rem;
  }
}
#home {
  display: flex;
  flex-wrap: nowrap;
}

#home-img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation-name: flow-left;
  animation-duration: 2.5s;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation-fill-mode: forwards;
  height: 100vh;
}

#home-img img {
  position: sticky;
  top: 0;
}

.main-txt {
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: left;
  align-items: left;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
  text-shadow: 1px 1px 1px rgb(31, 30, 30);
  text-align: left;
  position: relative;
  animation-name: flow-down;
  animation-duration: 2.5s;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation-fill-mode: forwards;
}

@media (max-width: 1300px) {
  #home {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4rem;
    gap: 0;
    text-align: left;
  }
  #home .main-txt {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
  }
  #home #name {
    font-size: 4rem;
    text-align: left;
  }
  #home #home-img img {
    height: 400px;
    width: 400px;
  }
  #home .secondary-txt {
    font-size: 1rem;
  }
  #home #project-btn {
    padding: 1rem 5.5rem;
    font-size: 1.25rem;
  }
}
@media (max-width: 1050px) {
  #home-img {
    display: none;
  }
}
@media (max-width: 730px) {
  #home {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
  }
  #home .main-txt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #home .main-txt #name {
    font-size: 3rem;
  }
  #home #project-btn {
    padding: 0.5rem 3.5rem;
    font-size: 0.75rem;
  }
}
#name {
  font-size: 6rem;
  letter-spacing: -4px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-sans);
}

.secondary-txt {
  font-size: 2.25rem;
  font-weight: 400;
  width: 100%;
  line-height: 1.6;
  font-family: var(--font-mono);
}

#project-btn {
  padding: 1.25rem 6.5rem;
  font-size: 2.25rem;
  color: var(--light-green);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  font-weight: 700;
  border-radius: 5px;
  border: 2px solid var(--light-green);
  cursor: pointer;
}

#project-btn:hover {
  background: var(--dark-green);
  color: var(--base-white);
  border: 2px solid var(--dark-green);
  transition: 1s;
}

#about {
  padding-top: 5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#about img {
  width: 30%;
  float: left;
}

.text-body {
  float: right;
  width: 50%;
}
.text-body h2 {
  color: var(--base-white);
}

@media (max-width: 1000px) {
  #about {
    justify-content: center;
  }
  img {
    display: none;
  }
  .text-body {
    width: 100%;
  }
}
.skill-set {
  display: flex;
  flex-wrap: wrap;
}

.skills {
  padding: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  margin-right: 0.75rem;
  background: rgba(153, 153, 153, 0.2);
  border-radius: 8px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .skills {
    margin-bottom: 0.5rem;
    margin-right: 0.5rem;
  }
}

.project-title {
  padding-top: 5rem;
  float: left;
  width: 50%;
  padding-bottom: 3rem;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
}
.projects h3 {
  font-size: 3rem;
  font-weight: bolder;
  color: var(--light-green);
  padding-top: 1rem;
}

.project {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.project img {
  border: 0.05px solid var(--light-green);
  border-radius: 15px;
}

.carousel {
  width: 40%;
  padding-top: 1rem;
}

.project-text {
  width: 50%;
}

.regular-button a {
  text-decoration: none;
  background: transparent;
  color: var(--dark-purple);
}

.tech {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  margin-left: -2rem;
}

.technologies {
  padding: 0.5rem 0.5rem;
  background: rgba(153, 153, 153, 0.2);
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 600;
}
@media (max-width: 1300px) {
  .technologies {
    font-size: 0.75rem;
  }
}

@media (max-width: 1850px) {
  .projects .technologies {
    font-size: 0.75rem;
  }
}
@media (max-width: 1000px) {
  .project-title {
    width: 100%;
    padding-bottom: 1rem;
  }
  .project-text {
    width: 100%;
  }
  .carousel {
    width: 100%;
  }
  .project {
    border-bottom: 1px solid var(--light-green);
  }
  .projects h3 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  img {
    height: 225px;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.wsc {
  width: 50%;
}

.contact-text {
  display: flex;
  align-self: flex-end;
  flex-direction: column;
  width: 50%;
  padding-top: 5rem;
}

#contact {
  display: flex;
  margin-top: 5rem;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-left: 0;
}
#contact .form-pic {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#contact img {
  top: 3rem;
  height: 550px;
  width: 550px; /* Safari */
  position: sticky;
  border-radius: 0 0 225px 225px;
}

@media (max-width: 1000px) {
  .contact-text {
    align-self: center;
    width: 100%;
  }
  .form-pic img {
    display: none;
  }
}
@media (max-width: 1400px) {
  #contact .form-pic img {
    height: 350px;
    width: 350px;
  }
}
:root {
  --light-green: #74eea3;
  --dark-green: #26653e;
  --dark-purple: #1E1C2D;
  --light-purple: #514C6A;
  --base-white: #EBEBEE;
  --font-sans: "Kanit", sans-serif;
  --font-mono: "SF Mono","Fira Code","Fira Mono","Roboto Mono",monospace;
}

* {
  color: var(--base-white);
  background: #1E1C2D;
}

@keyframes flow-down {
  0% {
    position: relative;
    opacity: 0;
    top: -8rem;
  }
  100% {
    opacity: 1;
    top: 0;
    left: 0;
  }
}
@keyframes flow-left {
  0% {
    opacity: 0;
    right: -100%;
  }
  100% {
    opacity: 1;
    right: 0;
    transition: 5s;
  }
}
.regular-button {
  padding: 0.25rem 0.5rem;
  font-size: 1.5rem;
  background: var(--light-green);
  color: var(--dark-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  font-weight: 700;
  border-radius: 5px;
  border: 2px solid var(--light-green);
  cursor: pointer;
}
.regular-button:hover {
  background: var(--dark-green);
  color: var(--base-white);
  border: 2px solid var(--dark-green);
  transition: 1s;
}

h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  border-bottom: 3px solid var(--light-green);
  border-radius: 2px;
}

body {
  margin-top: 2rem;
  box-sizing: border-box;
}

content {
  width: 100%;
}

.section {
  padding: 0 20rem;
  font-family: var(--font-mono);
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.section h2, .section h3 {
  font-size: 2.5rem;
  font-weight: 500;
}
.section p {
  font-size: 1.25rem;
}

img { /* Safari */
  position: sticky;
  top: 0;
}

@media (max-width: 1800px) {
  .section {
    padding: 0 5rem;
    width: 100%;
    margin: 0;
  }
  .section h2, .section h3 {
    font-size: 2rem;
    font-weight: 500;
  }
  .section p {
    font-size: 1.05rem;
  }
  .regular-button {
    font-size: 0.75rem;
  }
}
@media (max-width: 700px) {
  .section {
    padding: 0 2rem;
  }
  .section h2, .section h3 {
    font-size: 1.5rem;
  }
  .section p {
    font-size: 0.8rem;
    line-height: 1.5rem;
  }
}
::-webkit-scrollbar {
  width: 0.4rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 2rem;
  background: var(--light-green);
}/*# sourceMappingURL=main.css.map */