*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

:root {
  --gray: hsl(196, 8%, 73%);
  --darkgray: hsl(225, 6%, 49%);
  --beige: #ebe6e0;
  --ltbeige: rgb(248, 246, 242);

  --pink: #E4DFDB;
  --ltgray: hsl(210, 6%, 94%);
  --ltbrown: hsl(65, 5%, 46%);
  --brown: hsl(64, 8%, 36%);
  --paddingX: 2rem;
  --paddingY: 1.5rem;
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  --font-sans: "Calibre", "San Francisco", "SF Pro Text", -apple-system, system-ui, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

body {
  font-family: var(--font-sans);
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background-color: var(--pink);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 80px;
  padding-left: 30px 10%;
  z-index: 11;

}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 80px;
}

a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--brown);
}
a.inline-link {
  display: inline-block;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  position: relative;
  transition: var(--transition);
  color: var(--brown);
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 200px;
  height: auto;
  cursor: pointer;
}

.menuli {
  list-style: none;
}

.menuli li {
  display: inline-block;
  padding: 0px 30px;
}

.menuli li a {
  text-decoration: none;
  color: var(--brown);
  font-family: var(--font-mono);
}

.menuli li a:hover {
  color: var(--ltbrown);
}

.menu-btn {
  display: none;
}

@media (max-width: 750px) {
  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 12vh;
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    opacity: 0.9;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s ease-in;
    transition: -webkit-transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
  }

  .nav-links li {
    opacity: 0;
    padding: 5px 10px;
    line-height: 50px;
  }

  .nav-active {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  @-webkit-keyframes navLinkFade {
    from {
      opacity: 0;
      -webkit-transform: translateX(50px);
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
    }
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      -webkit-transform: translateX(50px);
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
    }
  }

  .menu-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    /* border: 3px solid #fff; */
  }

  .menu-btn__burger {
    width: 20px;
    height: 3px;
    background: var(--brown);
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
    box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }

  .menu-btn__burger::before,
  .menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: var(--brown);
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
    box-shadow: 0 2px 5px rgba(255, 101, 47, 0.2);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }

  .menu-btn__burger::before {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    top: 1.65rem;
  }

  .menu-btn__burger::after {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    top: 0.75rem;
  }

  /* ANIMATION */
  .menu-btn.open .menu-btn__burger {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .menu-btn.open .menu-btn__burger::before {
    -webkit-transform: rotate(0.125turn) translateY(-10px);
    transform: rotate(0.125turn) translateY(-10px);
  }

  .menu-btn.open .menu-btn__burger::after {
    -webkit-transform: rotate(-0.125turn) translateY(10px);
    transform: rotate(-0.125turn) translateY(10px);
  }
}

.resume-button {
  background-color: transparent;
  border: 1px solid var(--brown);
  border-radius: 5px;
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 15px;
  font-size: var(--fz-xs);
}


.side {
  width: 40px;
  position: fixed;
  bottom: 0px;
  color: var(--brown);
  left: 20px;
  right: auto;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  list-style: none;
  margin: 0px;
  list-style-type: none;
}

.social li a {
  padding: 10px;
}

.social li a svg {
  width: 20px;
  height: 20px;
}

.social::after {
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  margin: 0px auto;
  background-color: var(--brown);
}

.rightside {
  width: 40px;
  position: fixed;
  bottom: 0px;
  left: auto;
  right: 40px;
  z-index: 10;
}

.email a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 20px auto;
  padding: 10px;
  font-family: var(--font-mono);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
}

.email::after {
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  margin: 0px auto;
  background-color: var(--brown);
}

main {
  padding: 0px 100px;
}

.homePage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 100px;

}

.fadeup h1,
.big,
.fadeup p {
  opacity: 0;
  visibility: hidden;
}

.fadeup h1 {
  margin: 0px 0px 30px 4px;
  color: var(--brown);
  font-family: var(--font-mono);
  font-size: clamp(var(--fz-sm), 5vw, var(--fz-md));
  font-weight: 400;
  padding-top: 30px;
}

.big {
  margin: 0px;
  font-size: clamp(40px, 8vw, 80px);
}

.fadeup p,
p {
  margin: 20px 0px 20px 0px;
  max-width: 500px;
  font-family: var(--font-mono);
  line-height: 1.3;
  text-align: start;
}

section {
  margin: 0px auto;
  padding: 50px 0px;
  max-width: 1000px;
}

h1 {
  font-family: 'Dancing Script';
  font-size: 38px;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px 0px 10px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.1;
  max-width: 500px;

}



.aboutme {
  max-width: 900px;
}

.about_inner {
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutText {
  width: 360px;
  opacity: 0.7;
  background-color: var(--pink);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--brown);
  position: relative;
  padding: 10px;
  height: auto;


}

.aboutText h1 {
  position: absolute;
  top: -50px;
}

.aboutPhoto {
  display: block;
  position: relative;
  width: 250px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-shadow: 0 10px 30px -15px var(--brown);
  box-shadow: 0 10px 30px -15px var(--brown);
  margin: 0px;
  left: -20px;
  bottom: -40px;
}

.aboutPhoto img {
  position: relative;
  max-width: 250px;
  border-radius: 4px;
  margin: 0px;
  padding-top: 15px;
}

@media (max-width: 660px) {
  .aboutme {
    display: block;
    margin: 0 auto;
  }

  .about_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-columns: none;
    grid-template-columns: none;
    position: relative;
  }

  .aboutText {
    grid-row: 2;
    -ms-grid-row-span: 1;
    grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
    z-index: 1000;
  }

  .aboutPhoto {
    grid-row: 1;
    -ms-grid-row-span: 1;
    grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
    width: 100%;
    height: -20px;
    margin: 0 auto;
    background-color: transparent;
  }

  .aboutPhoto img {
    width: 100%;
  }
}

.numbered-heading {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  margin: 10px 0px 40px;
  width: 100%;
  font-size: clamp(26px, 5vw, var(--fz-heading));
  white-space: nowrap;
}

.numbered-heading::after {
  content: "";
  display: block;
  position: relative;
  top: 0px;
  width: 300px;
  height: 1px;
  margin-left: 20px;
  background-color: var(--brown);
}


.tab_list {
  margin-top:10px;
  position: relative;
  z-index: 3;
  width: max-content;
  padding: 0px;
  margin: 0px;
  list-style: none;
}
@media (max-width: 600px){

  .grid {
    display: block! important;
  }
.tab_list {
    display: flex !important;
    overflow-x: auto;
    width: calc(100% + 100px);
    padding-left: 50px;
    margin-left: -50px;
    margin-bottom: 30px;
}
button[aria-selected="false"]{
  display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    min-width: 120px;
    padding: 0px 15px;
    border-left: 0px!important;
    text-align: center;
}
 button[aria-selected="true"] {
  display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    min-width: 120px;
    padding: 0px 15px;
    border-left: 0px!important;
    border-bottom: 2px solid var(--brown);
    text-align: center;
}


}
button[aria-selected="false"] {
  padding: 0px 15px 2px;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: var(--tab-height);
  padding: 0px 20px 2px;
  border-left: 2px solid var(--beige);
  background-color: transparent;
  color: var(--beige);
  font-family: var(--font-mono);
  font-size: var(--fz-xs);
  text-align: left;
  white-space: nowrap;
}

button[aria-selected="true"] {
  text-decoration: none;
  text-decoration-skip-ink: auto;
  position: relative;
  transition: var(--transition);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: var(--tab-height);
  padding: 0px 20px 2px;
  border-left: 2px solid var(--brown);
  background-color: transparent;
  color: var(--brown);
  font-family: var(--font-mono);
  font-size: var(--fz-xs);
  text-align: left;
  white-space: nowrap;
}


button {
  cursor: pointer;
  border: 0px;
  border-radius: 0px;
}

button:focus {outline:0;}

.grid {
  --timing: .3s;
  --curr: 0;
  --gutter: 5px;
  display: grid;
  
  margin:  20px auto;
  min-width: 300px;
  width: 100%;
  height: auto;
  padding: 10px 5px;
}


.grid::before {
  content: '';
  grid-area: 1 / 2;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 10px -3px rgba(0, 0, 0, .1), 0 3px 4px -2px rgba(0, 0, 0, .05);
  z-index: -1;
}

article::after {
  content: '';
  grid-area: 1 / 2;
  place-self: end;
  width: 45%;
  height: 60%;
  background: radial-gradient(circle at 50%, rebeccapurple 2px, transparent 0 10px) 100% 100% / 10px 10px round round;
  margin: 0 -30px -30px 0;
  z-index: -2;
}
/* SCENES */
[data-scene] {
  padding: 20px;
  grid-area: 1 / 2;
  color: #222d40;
  will-change: opacity;
  overflow: hidden;
  outline: none;
  list-style: none;
  content: '';
  grid-area: 1 / 2;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 10px -3px rgba(0, 0, 0, .1), 0 3px 4px -2px rgba(0, 0, 0, .05);
  z-index: -1;
}

[data-scene] li{
  list-style: none;
}
.exp_content ul li::before {
  content: "▹"  !important;
  position: relative;
  left: 0px;
  color: var(--brown);
}
.range {
    margin-bottom: 25px;
    color: var(--light-slate);
    font-family: var(--font-mono);
    font-size: var(--fz-xs);
}
[data-scene] p{
  text-align: start;
}

[data-state="section1"] [data-scene]:not([data-scene="section1"]),
[data-state="section2"] [data-scene]:not([data-scene="section2"]){
  --tY: .25rem;
  --op: 0;
  visibility: hidden;
  display: none;
  pointer-events: none;
}
.myProject {
  -webkit-box-align: center;
  align-items: center;
}

.project-grid {
  list-style: none;
  padding: 0px;
  margin: 50px 0px 0px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

@media (max-width: 1080px) {
  .project-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.projectli {
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s, transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
  visibility: visible;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  position: relative;
  cursor: default;
  transition: var(--transition);
}

.project_div {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  height: 100%;
  padding: 2rem 1.75rem;
  border-radius: 5px;
  transition: var(--transition);
  background-color: var(--ltbeige);
}

.project_div:hover {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;

  transform: scale(1.01);
  cursor: pointer;
  z-index: 1;
}

div-header {
  display: block;
}





.project-title {
  margin: 0px 0px 5px;
  color: var(--brown);
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.project-links a {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.project-description {
  color: var(--light-slate);
  font-size: 17px;
}

div-footer {
  display: block;
}

.project-tech-list {
  display: flex;
  align-items: flex-end;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0px;
  margin: 20px 0px 0px;
  list-style: none;
}

.project-tech-list li:not(:last-of-type) {
  margin-right: 15px;
}

.dream h2 {
  font-family: 'Dancing Script', cursive;
  color: rosybrown;
  font-size: 40px;
  font-weight: 600;
  margin-left: 10px;
  text-align: center;
}

.projectdiv h1 {
  font-family: 'Dancing Script', cursive;
  color: white;
  font-size: 40px;
  font-weight: 600;
  position: relative;
  z-index: 9;
}

.projectdiv img {
  width: 250px;
  height: 250px;
  position: absolute;
}

@media (max-width: 450px) {
  main {
    padding: 0px 80px;
  }
}

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