body {
  background: #dcf2f1;
}

html {
  scroll-behavior: smooth;
}

.nav {
  color: floralwhite;
  padding: 10px;
  display: flex;
}

.nav li a {
  color: beige;
}

.nav li a:hover {
  color: #6a9ab0;
}

.video-container {
  position: absolute !important;
  z-index: -1;
  width: 85%;
  height: 90vh;
  object-fit: contain !important;
  overflow: hidden !important;
}

.button {
  background: #dcf2f1;
  width: 50%;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 1rem;
  color: #0f1035;
  border-radius: 25px;
  padding: 10px;
  transition: 1.2s opacity ease
}

.start {
  color: #0f1035;
  text-decoration: none;
  padding: 0;
}

.start:hover {
  text-decoration: underline;
  cursor: pointer;
}

.header {
  color: #dcf2f1;
  background-image: linear-gradient(
    rgba(15, 16, 53, 1),
    rgba(220, 242, 241, 0.75)
  );
  height: 90vh;
  width: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.head-container {
  position: sticky !important;
  top: 25% !important;
  margin-top: 3vh;
  margin-bottom: 0px;
}


#name-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  display: inline-block;
  position: relative;
  z-index: 5;
}

#name-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #0f1035;
  transform: scaleX(0);
  left: 0;
  bottom: -5px;
  transition: transform 0.5s ease-in-out;
}

#name-title:hover::after {
  transform: scaleX(1);
}

.desc-container {
  opacity: 0;
  transform: translateY(-50px); /* Start 50px above */
  animation: fadeInFromAbove 2s ease forwards; /* Animation duration and easing */
  animation-delay: 2.4s;
}

@keyframes fadeInFromAbove {
  0% {
    opacity: 0;
    transform: translateY(-4rem) scaleY(0); /* Initial position */
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1); /* Final position */
  }
}

p {
  font-family: "Roboto", sans-serif;
  max-width: 500px;
}

.desc {
  box-shadow: 0px 10px 10px 0px rgba(15, 16, 53, 0.2);
  margin: 0 auto;
  padding: 1rem;
}

section {
  max-width: 85%;
  margin: 2rem auto;
  background-color: #0f1035;
  border-radius: 10px;
  box-shadow: 0 8px 8px rgba(15, 16, 53, 0.25);
  color: #dcf2f1;
  display: none;
}

.content {
  margin: 2rem auto;
  padding: 3rem;
}

.upper-container {
  border: 2px solid #6a9ab0;
  border-radius: 10px;
  padding: 1rem;
}

span a {
  font-size: 1rem;
  margin-bottom: 2em;
  padding-bottom: 2em;
  cursor: pointer;
  color: #dcf2f1;
  text-decoration: none;
}

span a:hover {
  text-decoration: underline;
}

.inside-container {
  border: 2px solid #6a9ab0;
  padding: 10px;
  border-radius: 10px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.skills li {
  background: #dcf2f1;
  margin: 3px;
  padding: 7px;
  border-radius: 20px;
  list-style: none;
  color: #0f1035;
  font-size: 0.75rem;
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

.email {
  color: #dcf2f1;
}
.contact {
  margin-top: 1rem;
  margin-bottom: 0;
}

footer {
  background: #0f1035;
  color: #dcf2f1;
  padding: 1rem;
  display: none;
}

.fa-youtube {
  color: #ff0000;
}