@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
  margin: 0;
  padding: 0;
}
header {
  min-height: 100vh;
  width: 100%;
  background-color: #606a20;
  background-position: center;
  background-size: cover;
  position: relative;
}
/* .header {
  width: 100%;
  background-color: #F3E9D5;
  position: relative;
} */

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}

nav img {
  width: 95px;
  /* Adds a smooth transition effect */
}

.nav-links {
  flex: 1;
  text-align: right;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.nav-links ul li a {
  font-family: "Inria Sans", sans-serif;
  font-weight: 700;
  color: #E9E0BD;
  text-decoration: none;
  font-size: 20px;
}

.nav-links ul li a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #E9E0BD;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li a:hover::after {
  width: 100%;
}
section {
  width: 100%; 
  height: 100%;
  background: #606a20;
  color: #F3E9D5;
  box-sizing: border-box;
  overflow: hidden; 
  position: absolute;
}
.sliding {
  position: absolute;
  top: 20%; 
  white-space: nowrap;
  font-size: 22em;
  line-height: 220 px;
  overflow: hidden;
  font-family: "Anybody", sans-serif;
  font-optical-sizing: auto;
  animation: animate 80s linear infinite;
  font-weight: 600;
}
@keyframes animate
{
  0%
  {
    transform: translate(0, -50%);
  }
  100%
  {
    transform: translate(-50%, -50%);
  }
}

.email.email:hover{
  text-decoration: underline;

}

h1 {
  color: #F3E9D5;
  font-family: "Anybody", sans-serif;
  font-weight: 300;
  margin-top: 25%;
  font-size: 60px;
  align-items: center;
  position: relative; /* Ensure relative positioning for pseudo-element */
  margin-bottom: 50px; /* Increase the margin to move the h1 further down */
}
p {
  color: #F3E9D5;
  align-items: center;
  font-family: "IBM Plex Serif", serif;
  font-weight: 200;
  font-style: italic;
  font-size: 30px;
  padding-left: 10%;
  padding-right: 10%;
}

