html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  background-color: #d9d7d3;
  font-family: Arial, sans-serif;
  -webkit-user-select: none;
  user-select: none;
}

body {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

.bio-container {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.navbar {
  font-size: 15px;
  list-style-type: none;
  padding: 0;
  margin: 8px 0 0 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: calc(100% - 40px);
  height: 45px;
  border-bottom: 2px solid #43413a;
  text-transform: uppercase;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-left, .navbar-right, .navbar-center {
  gap: 20px;
  opacity: 0;
  animation: slide-nav-in 1000ms ease-in-out forwards;
  animation-delay: 600ms;
}

.navbar-center {
  text-transform: capitalize;
  position: absolute;
  left: calc(50% - 72.51px);
}

.navbar-center li {
  font-family: 'VincentFont', serif;
  font-size: 29px;
  padding-bottom: 5px;
}

.navbar li {
  list-style-type: none;
}

.navbar li a {
  display: block;
  color: #43413a;
  text-decoration: none;
  text-align: center;
}

.navbar-center li a {
  padding: 14px 20px;
}

.navbar-left li:first-child a:hover, .navbar-left li:nth-child(2) a:hover, .navbar-left li:nth-child(3) a:hover,.navbar-left li:nth-child(4) a:hover, .navbar-right li a:hover{
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.title-overlay {
  width: 100vw;
  font-size: 5.5vw;
  opacity: 0;
  animation: slide-title-in 850ms ease-in-out forwards;
  animation-delay: 1350ms;
}

.caixa {
  width: 100vw;
  overflow: hidden;
  padding-top:40px;
  position: relative;
  color: #43413a;
  top: 58px;
  display: flex;
  height: 10%;
  align-items: center;
  text-align: center;
  font-family: 'VincentFont', serif;
}


.bio-sections {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.artwork {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  display: flex; 
  justify-content: flex-start; 
  opacity: 0;
  animation: slide-card-in 1200ms ease-in-out forwards;
  animation-delay: 1450ms;
  width: 100%; 
}

.artwork[data-section="section1"] {
  animation-delay: 1450ms;
}

.background-image {
  width: 45%; 
  height: auto; 
  object-fit: cover;
}

.text {
  display: flex;
  flex-direction: column;
  justify-content:flex-start;
  align-items: left;
  color: #43413a;
  text-transform: capitalize;
  position: relative;
  padding-left: 20px; 
  width: 50%; 
}

.text h2{
  font-family: 'VincentFont', serif;
  font-size: 4vw;
  margin: 0 0 10px;
}

.text p:nth-child(2) {
  font-size: 1.05vw;
  line-height: 1.6;
  text-transform: none;
}
