.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    margin: 5rem 0;
}

.top {
    display: flex;
    gap: 3rem;
    margin-bottom: -8rem;
}

.top-left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.top-right {
    display: flex;
    align-items: start;
    margin-top: .5rem;
}

.top-text {
    font-size: 62px;
}

.bottom-text {
    font-family: 'Krisha', 'sans-serif';
    font-size: 383px;
}

.experience-text {
    font-size: 48px;
}

.top-text-large {
    font-family: 'Krisha', 'sans-serif';
    font-size: 272px;
    margin-top: -5rem;
}

.top-text-right {
    transform: rotate(90deg);
    display: inline-block;
    margin-top: 3.25rem;
}

.selfie {
    width: 240px;
    margin-right: -3rem;
}

.about-para {
    font-family: 'Sansation', sans-serif;
    font-size: 22px;
    width: 950px;
    line-height: 150%;
}

.bottom-left p {
    margin-top: .75rem;
    font-size: 28px;
    width: 400px;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    width: 950px;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.experience p {
    font-family: 'Sansation', sans-serif;
    font-size: 16px;
}

.time {
    font-style: italic;
}

.place a {
    color: #0F1B1F
}

.small-logo {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-32.5%, 12.75%);
    width: 105px;
    z-index: 2;
}



.line-with-arrows {
    display: flex;
    align-items: center;
    width: 930px; /* make it stretch full width */
    padding: 1rem 0; /* optional vertical spacing */
  }
  
  .line {
    margin-top: .3rem;
    flex-grow: 1;
    height: 2.5px;
    background-color: #0F1B1F;
  }
  
  .arrow {
    font-family: monospace;
    font-size: 1.75rem;
    color: #0F1B1F
  }

  .left-arrow {
    margin-right: -2px;
  }
  
  .right-arrow {
    margin-left: -2px;
  }




  @media screen and (max-width: 1000px) {
    .top-text-large {
        font-size: 166px;
        margin-top: -2.5rem;
    }

    .bottom-text {
        font-size: 233px;
    }

    .top-text {
        font-size: 37px;
    }

    .selfie {
        width: 152px;
        margin-right: -2rem;
    }

    .top {
        gap: 1rem;
        margin-bottom: -5rem;
    }

    .top-text-right {
        margin-top: 2rem;
    }

    .small-logo {
        top: 20%;
        left: 50%;
        transform: translate(-25%, 10%);
        width: 65px;
    }

    .about-para {
        width: 560px;
        font-size: 18px;
    }

    .line-with-arrows {
        width: 560px;
    }

    .main-container {
        gap: 3rem;
        margin-top: 3rem;
    }

    .bottom-container {
        flex-direction: column;
        width: 560px;
        gap: 3rem;
    }

    .experience-text {
        font-size: 32px;
    }

    .bottom-left p {
        font-size: 24px;
    }

    .line {
        margin-top: .25rem;
    }
}

@media screen and (max-width: 600px) {
    .top-text-large {
        font-size: 84px;
        margin-top: -1.5rem;
    }

    .bottom-text {
        font-size: 118px;
    }

    .top-text {
        font-size: 19px;
    }

    .selfie {
        width: 70px;
        margin-right: -1rem;
    }

    .top {
        gap: .5rem;
        margin-bottom: -2.75rem;
    }

    .top-text-right {
        margin-top: 1rem;
    }

    .small-logo {
        top: 20%;
        left: 50%;
        transform: translate(-18%, 8%);
        width: 34px;
    }

    .about-para {
        width: 280px;
        font-size: 16px;
    }

    .line-with-arrows {
        width: 280px;
    }

    .main-container {
        gap: 2rem;
        margin-top: 2rem;
    }

    .bottom-container {
        width: 280px;
        gap: 2rem;
    }

    .experience-text {
        font-size: 24px;
    }

    .bottom-left p {
        font-size: 18px;
        width: 280px
    }

    .line {
        margin-top: .28rem;
    }
}






/* Initial states */
.animate-on-load {
    opacity: 0;
    transition: all 0.75s ease-out;
    position: relative;
  }
  
  .top-left.animate-on-load {
    transform: translateX(-100px);
  }
  
  .top-right.animate-on-load {
    transform: translateX(100px);
  }
  
  .bottom.animate-on-load {
    transform: translateY(60px);
  }
  
  /* Final animated states */
  .animate-on-load.animate-in {
    transform: translate(0, 0);
    opacity: 1;
  }
  
  

  
  
  

  
