.bgimage {
    position: relative;
    min-height: 100vh;
    background: url('../pictures/banner.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    animation: fade-in-bg 3s ease-in-out forwards;
    overflow: hidden;
  }

  .hero-container-fluid{
    min-height: 100vh;
  }

  @keyframes fade-in-bg {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @media (max-width: 576px) {
    .bgimage {
      height: 100vh;
    }
  }

  .hero_title {
    font-size: 77px;
    font-family: 'Audrey';
    src: url('./fonts/audrey.ttf') format('truetype');
    letter-spacing: 0.07em;
    opacity: 0;
    animation: fade-in 1s ease-in-out 1s forwards;
    animation-delay: 1s;
    z-index: 1;
    width: 100%;
  }

  #hero-title {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  @media (max-width: 768px) {
    .hero_text {
      position: absolute;
      letter-spacing: 0.07em;
    }
  }

  .hero_desc {
    font-size: 1.5rem;
    font-family: 'Audrey';
    opacity: 0;
    animation: fade-in 1s ease-in-out 2s forwards;
    animation-delay: 1.5s;
    margin-top: 2.27rem;
  }

  .hero-text {
    text-align: center;
    position: absolute;
    top: 45%;
    left: 50%;
    color: #141E23;
    transform: translate(-50%, -50%);
    font-family: 'Gotham';
    z-index: 2;
    }

  .enlarged-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: enlarge 2s forwards;
    z-index: -2;
    overflow: hidden;
  }

  .enlarged-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @keyframes enlarge {
      0% {
        transform: scale(30);
      }
      100% {
        transform: scale(1);
      }
  }

  @keyframes fade-in {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
  }

  .bottom-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    width: 100%;
    animation: slide-up 1.01s ease-in-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
    margin-top: 2vh;
  }

  @media (max-width: 768px) {
    .bottom-elements {
      position: relative;
      bottom: auto;
    }
  }

  @keyframes slide-up {
    0% {
      opacity: 0;
      transform: translateY(100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .social-icon {
    margin: 17px;
    height: 36px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
  }

  .socials {
    display: flex;
    justify-content: space-between;
    z-index: 1;
    align-items: center;
  }


  .social-icon:hover {
    transform: translateY(-7px);
  }

  .resume {
    background: transparent;
    font-size: 17px;
    font-family: 'Audrey';
    text-align: center;
    height: 38px;
    width: 250px;
    transition: transform 0.2s ease-in-out;
    border: 1.9px solid black;
    border-color: #141E23;
    border-radius: 3px;
  }

  .resume:hover {
    transform: translateY(-5px);
  }
