:root {
  --clr-accent-500: hsl(12, 60%, 45%);
  --clr-accent-400: hsl(12, 88%, 59%);
  --clr-accent-300: hsl(12, 88%, 75%);
  --clr-accent-100: hsl(13, 100%, 96%);

  --clr-primary-400: hsl(13, 100%, 96%);

  --clr-neutral-900: hsl(232, 12%, 13%);
  --clr-neutral-200: hsl(0 0% 97%);
  --clr-neutral-100: rgb(19,24,43);

  --background: #13182b;
  --darker-background: #080a11;

  --ff-primary: "Be Vietnam Pro", sans-serif;

  --ff-body: var(--ff-primary);
  --ff-heading: var(--ff-primary);

  --fw-regular: 400;
  --fw-semi-bold: 500;
  --fw-bold: 700;

  --fs-300: 0.8125rem;
  --fs-400: 0.875rem;
  --fs-500: 0.9375rem;
  --fs-600: 1rem;
  --fs-625: 1.2rem;
  --fs-650: 1.4rem;
  --fs-700: 1.875rem;
  --fs-800: 2.5rem;
  --fs-900: 3.5rem;

  --fs-body: var(--fs-400);
  --fs-primary-heading: var(--fs-800);
  --fs-secondary-heading: var(--fs-700);
  --fs-nav: var(--fs-500);
  --fs-button: var(--fs-300);

  --size-100: 0.25rem;
  --size-200: 0.5rem;
  --size-300: 0.75rem;
  --size-400: 1rem;
  --size-500: 1.5rem;
  --size-600: 2rem;
  --size-700: 3rem;
  --size-800: 4rem;
  --size-900: 5rem;
}

@media (min-width: 50em) {
  :root {
    --fs-body: var(--fs-500);
    --fs-primary-heading: var(--fs-900);
    --fs-secondary-heading: var(--fs-800);

    --fs-nav: var(--fs-300);
  }
}

/* https://piccalil.li/blog/a-modern-css-reset*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* general styling */

body {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  color: var(--clr-primary-400);
  background-color: var(--background);
}





/* navigation */




.nav-list {
  font-size: var(--fs-nav);

  font-weight: var(--fw-semi-bold);
  list-style-type: none;
  margin: 0;
  overflow: hidden;
  /* background-color: #333333; */
}

.nav-list a {
  text-decoration: none;
  color: var(--clr-primary-400);
  font-size: var(--fs-600);
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--clr-accent-400);
}
.nav-list li {
  /* float: left; */
  padding: 0 5%;
  margin: 3% 0;
  text-align: left;
  

}

.primary-navigation {
  /* border:1px solid white; */
  display: block;
  margin: 0;
  text-align: center;
  justify-content: center;
 
}

@media (max-width: 50em) {
  .primary-navigation {
    display: none;
  }

}

/* footer */

/* footer navigation */

/* social list */

/* cta */

/* numbered items */

/* Utility classes */

.container {
  --max-width: 1110px;
  --container-padding: 3rem;

  width: 100%;
  margin-inline: auto;
}

.even-columns {
  display: grid;
  gap: 1rem;
}
@media (min-width: 55em) {
  .even-columns {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fs-primary-heading {
  font-size: var(--fs-primary-heading);
  line-height: 1.1;
}
.fs-secondary-heading {
  font-size: var(--fs-secondary-heading);
  line-height: 1;
  margin: 5% 0 0 0;
}

.padding-block-900 {
  padding-block: var(--size-900);
}

.col1{
  text-align: center;
}

@media (min-width: 50em) {
  .col2 {
    height: 100%;
    width: 50%;
  }
  
  .col1 {

    position: fixed;
    left: 25%;
    text-align: left;
    top: 50%;
    width: 42%;
    height: fit-content;
    transform: translate(-50%, -50%);
  }
  
  
  .col2 {

    margin-left: 45%;
    margin-right: 6%;
    width:auto;
    /* border: 1px solid yellow; */
  }


}
.social ul {
  list-style-type: none;
}
.social li {
  float: left;
  padding: 1rem;
}

.social li a {
  display: block;
  color: white;
  text-align: center;

  text-decoration: none;
}

.social li a:hover {
  background-color: var(--darker-background);
}


h3{
  font-size: var(--fs-650);
  padding: 5% 0;
  width: fit-content;
  font-weight: var(--fw-semi-bold);
}
.sec-container{
  
  /* border: 1px solid white; */
  padding: 1rem ;
}
p{
  margin-left:30px;
  margin-right: 10%;
}

/* photos */
@keyframes tonext {
  75% {
    left: 0;
  }
  95% {
    left: 100%;
  }
  98% {
    left: 100%;
  }
  99% {
    left: 0;
  }
}

@keyframes tostart {
  75% {
    left: 0;
  }
  95% {
    left: -300%;
  }
  98% {
    left: -300%;
  }
  99% {
    left: 0;
  }
}

@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}

/* body {
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  font-family: 'Lato', sans-serif;
} */

* {
  box-sizing: border-box;
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
}

*::-webkit-scrollbar {
  width: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

* {
  -ms-overflow-style: none;
}

ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel {
  position: relative;
  padding-top: 75%;
  filter: drop-shadow(0 0 10px #0003);
  perspective: 100px;
}

.carousel__viewport {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel__slide {
  position: relative;
  flex: 0 0 100%;
  

  object-fit: cover;
  object-position: top left;
  height: 500px;
  aspect-ratio: 1;
  overflow-x: hidden;

}






.carousel__slide:before {
  content: counter(item);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%,-40%,70px);
  color: #fff;
  font-size: 2em;
}

.carousel__snapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
}

@media (hover: hover) {
  .carousel__snapper {
    animation-name: tonext, snap;
    animation-timing-function: ease;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }

  .carousel__slide:last-child .carousel__snapper {
    animation-name: tostart, snap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__snapper {
    animation-name: none;
  }
}

.carousel:hover .carousel__snapper,
.carousel:focus-within .carousel__snapper {
  animation-name: none;
}

.carousel__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.carousel__navigation-list,
.carousel__navigation-item {
  display: inline-block;
}

.carousel__navigation-button {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #333;
  background-clip: content-box;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.1s;
}

.carousel::before,
.carousel::after,
.carousel__prev,
.carousel__next {
  position: absolute;
  top: 0;
  margin-top: 37.5%;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 0;
  outline: 0;
}

.carousel::before,
.carousel__prev {
  left: -1rem;
}

.carousel::after,
.carousel__next {
  right: -1rem;
}

.carousel::before,
.carousel::after {
  content: '';
  z-index: 1;
  background-color: #333;
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 2.5rem;
  line-height: 4rem;
  text-align: center;
  pointer-events: none;
}

.carousel::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
}

.carousel::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
}


.sec-container p{
  font-size: var(--fs-600);
}



  
.project-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 50em) {
  .project-content{
    display: block; 
  
  }
  .project-content img{
    padding: 1rem;
  }
  .img_proj{
    display: flex;
    align-items: center;
    justify-content: space-around

  }
}
#bears p{
  padding-bottom: 1rem;
}

.project-content img{
  max-width: 30vh;
}

.projects a{
  text-decoration: none;
  color: var(--clr-primary-400);
  font-size: larger;
  margin: 30px red;
}

.projects li{
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 2%;
}
.projects li:hover{
  background-color: var(--darker-background);
}
h4{
  padding:  0 0 1rem 0;
  font-size: var(--fs-625);
}
h4 span{
  color: #d3d3d3;
  display: block;
  text-align: right;
  font-size: var(--fs-500);
}
p span{
  color: #d3d3d3;
  font-size: var(--fs-500);
}

.education_list p{
  padding-bottom: 1rem;
}
.project-description{
  font-size: var(--fs-900);
  margin: 0 0 0 2rem;
  
}