html {
  display: flex;
  justify-content: center;
  min-width: 150px;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
  /* background-color: #DDA15E; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to left, #eca453, #e59840);

  /* min-width: 600px; */
  width: 100vw;
  height: 100vh;

  min-height: 400px;
  min-width: 200px;
}

header {
  display: flex;
  justify-content: center;
  /* gap: clamp(8px, 1vw, 16px); */

  z-index: 1000;
  margin: 0px;
  padding: 1em 0px;

  min-width: 600px;
  width: 100vw;

  color: #fefae0;

  /* color: #BC6C25; */
  /* background-color: #FEFAE0; */
  /* background-image: linear-gradient(to bottom, #FEFAE0, #dbe9aaeb); */
  /* box-shadow: 5px 5px 5px rgba(59, 59, 59, 0.653); */
  font-family: "Fraunces";
  position: fixed;
  top: 0;
}

/* Styling for icon alignment nav/header */
header ul li {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;

  font-size: clamp(10px, 1.5vh, 40px);
}

header a {
  margin: 0px;
  text-decoration: none;
  /* color: #BC6C25; */
  color: #fefae0;
  transition: 0.5s;
}

header a:hover {
  text-decoration: underline;
  /* color:#32381d; */
  color: #dda15e;
  /* font-size: 1.05em; */
  transform: translateY(-3px);
}

main {
  margin: 0px;
  padding: 0px;
}

.nav-list {
  margin: 0px;
  padding: 0px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;

  
}

.nav-list li {
  list-style: none;
  margin: 0px 0px;
}

.nav-main-name {
  font-family: "Permanent Marker", cursive;
  /* min() will at most be 36px */
  font-size: clamp(32px, 2.5vw, 64px);
  /* font-size: 3vw; */
  font-weight: 400;
  font-style: normal;
  transition: 1s;
}

.nav-main-name:hover {
  transform: translateY(-7px);
  /* color:#32381d; */
  color: #dda15e;
}

.intro-section {
  /* padding-top: 2em;
  margin-top: 2em; */
  min-height: 200px;
  min-width: 200px;
  height: 100vh;
  width: 100vw;

  /* background-color: #606C38; */
  background-image: linear-gradient(to right, #32381d, #606c38);
  display: flex;
  /* box-shadow: 5px 5px 5px rgba(59, 59, 59, 0.653); */
}

/* styling for div within the .intro-section */
.name-title {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  width: 50%;
  position: relative;
  left: 18%;
  color: #fefae0;
}

.first-greet-div {
  display: flex;
  align-items: center;
  gap: 0.25px;
  font-family: "Fraunces", sans-serif;
  font-size: clamp(16px, 2vw, 36px);
}
/* css concerning the link icons such as linkedin and instagram */
.links {
  display: flex;
  gap: 1em;
}

.fa-linkedin-square,
.fa-instagram {
  font-size: clamp(20px, 1.75vw, 48px);
  color: gray;
  transition: 0.2s;
}

.fa-linkedin-square:hover,
.fa-instagram:hover {
  color: white;
}

/* Waving emoji animation */
.wave {
  margin: 0px;
  padding: 0px;
  margin-bottom: 2.25vw;

  height: 40px;
  /* the name of the animation you created with @keyframe */
  animation-name: wave-animation;

  /* Speed up for slow down the animation */
  animation-duration: 2.5s;

  /* Looping the animation, giving an infinite effect */
  animation-iteration-count: infinite;

  /* Pivot around the bottom left palm */
  transform-origin: 80% 130%;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  } /* The following five values can be played with to make the waving more or less extreme */
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  } /* Reset for the last half to pause */
  100% {
    transform: rotate(0deg);
  }
}

.first-greet-div p {
  transition: 0.3s;
  margin-top: 0px;
}

.first-greet-div p:hover {
  transform: translateY(-10px);
  color: #fbdf54;
}

/* Styling the font inside the .name-title div */
/* .first-greet {
  font-size: min(1.25vw, 24px);
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 250;
  font-style: normal;
  font-variation-settings:
    "SOFT" 0,
    "WONK" 0;
  margin-bottom: 0.5em;
} */

/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900 */

.main-intro {
  margin-top: 0px;
  font-size: clamp(24px, 3vw, 48px);
  font-family: "Fraunces", serif;
  font-weight: 700px;
  font-style: normal;
  font-optical-sizing: auto;
}

/* .more-about {
  background-color: #606C38;
  background-image: linear-gradient(to bottom, #c4cfa2, #FEFAE0);
 

  max-width: 1150px;
  min-width: 600px;
  width: 100vw;

  min-height: 400px;
  height: 60vh;
  max-height: 1000px;
  
  display: flex;
  box-shadow: 5px 5px 5px rgba(59, 59, 59, 0.653)
} */

/* .profile-picture {
  grid-area: pfp;
  width: 300px;
}
.name-title {grid-area: name;}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: 
    'name name pfp '
    'name name pfp '
    ;
  height: 300px;

} */
