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;
}

/* Styling for icon alignment nav/header */

main {
  margin: 0px;
  padding: 0px;
}

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: #39511f;

  font-family: "Fraunces";
  position: fixed;
  top: 0;
}

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; */
  color: #39511f;
  transition: 0.5s;
}

header a:hover {
  text-decoration: underline;
  /* color:#32381d; */
  color: #dda15e;
  /* font-size: 1.05em; */
  transform: translateY(-3px);
}


.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 {

  min-height: 200px;
  min-width: 200px;
  height: 100vh;
  width: 100vw;

 
  /* background-image: linear-gradient(to right, #32381d, #606c38); */
  background-image: linear-gradient(to right, #fefae0, #ffe9a6);
  display: flex;
}

/* styling for div within the .intro-section */
.name-title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  position: relative;
  left: 18%;
  /* color: #fefae0; */
  color: #39511f;
}

.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 */

.first-greet-div p {
  transition: 0.3s;
  margin-top: 0px;
}

.first-greet-div p:hover {
  transform: translateY(-10px);
  color: #fbdf54;
}

.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;
}
