html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fffdf6;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.portfolio-card {
  margin-bottom: 1rem;
  overflow: hidden;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.portfolio-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;

  display: block;
  transition: transform 0.4s ease;
}

.image-wrapper {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.long-image-wrapper {
  aspect-ratio: 16 / 9;
  margin-bottom: 25px;
  overflow: hidden;
}

.tall-image-wrapper {
  aspect-ratio: 9 / 16;
  margin-bottom: 25px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.long-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.long-image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tall-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card:hover img {
  transform: scale(1.03);
  opacity: 0.6;
}

.portfolio-card a {
  text-decoration: none;
  color: inherit;
}

.sidebar-top,
.sidebar-bottom {
  text-align: center;
}

@media (max-width: 768px) {
  .sidebar-top {
    display: none;
  }
}

.work-title {
  margin-top: 0.75rem;
  font-size: 1rem;
  text-align: left;
}

.profile-photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.profile-name {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.job-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  font-style: italic;
}

.reel {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 70px;
  font-style: bold;
  color: #bc2926;
  transition: transform 0.15s ease;
  transition-timing-function: ease-in;
}

.reel:hover {
  transform: scale(1.15);
  transition: transform 0.1s ease;
  transition-timing-function: ease-out;
}

a {
  text-decoration: none !important;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.socials {
  margin-bottom: 30px;
  width: 45px;
  height: auto;
  transition: transform 0.15s ease;
  transition-timing-function: ease-in;
}

.socials:hover {
  transform: scale(1.15);
  transition: transform 0.1s ease;
  transition-timing-function: ease-out;
}

.header {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  font-style: bold;
  text-decoration: none;
  color: inherit;
}

.profile-text {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.email {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 0px;  
}
.email p{
	 margin-bottom: 0px;
	 transition: transform 0.15s ease;
	 transition-timing-function: ease-in;
}

.email p:hover {
	transform: scale(1.1);	 
	transition: transform 0.1s ease;
	transition-timing-function: ease-out;	
}

.underline {
  width: 85%;
  margin-top: 0px;
}

.smaller-underline {
  width: 25%;
  margin-top: 0px;
}

.extra-space {
  margin-bottom: 50px;
}

.small-extra-space {
  margin-bottom: 25px;
}

.back-to-top {
  position: fixed;
  bottom: 35px;
  right: 30px;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top img {
  display: block;
  width: 50px;
  max-width: 50px;
  color: #bc2926;
  transition: transform 0.3s ease;
}

.back-to-top img:hover {
  transform: scale(1.15);
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.project-footer {
  position: relative;
  margin-top: 80px;
  margin-bottom: 50px;
  min-height: 40px;
}
.project-header {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}

.home-link {
  left: 0;

  text-decoration: none;
  color: inherit;

  font-weight: 700;
  font-size: 24px;
}

@media (max-width: 768px) {
  .profile-name {
    font-size: 20px;
  }

  .header {
    font-size: 20px;
  }

  .profile-text {
    font-size: 18px;
  }

  .email {
    font-size: 16px;
  }

  .reel {
    font-size: 40px;
  }
}
