.landing_container {
    width: 100%;
    height: 100vh;

    top: 0px;
    left: 0px;


    position: absolute;
}

.landing_profile_all_container {
    /* Your existing styles */
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    
    /* Rubber band effect base */
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.landing_spaceholder {
    width: 100%;
    height: 72vh;
    display: flex;
}

.landing_profile_all_container {
    width: 100%;
    height: 60%;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    margin-left: 50px;
}

.landing_profile_container {
    width: fit-content;
    height: fit-content;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.landing_profile_picture_container {
    aspect-ratio: 1 / 1;
    width: 250px;
    height: auto;

    overflow: hidden;

    box-sizing: border-box;
    border-radius: 50%;
    border-style: solid;
    border-color: var(--color-border-white);
    border-width: 2px;

    transition: transform .5s ease;
    cursor: pointer;
    
    display: flex;
    justify-content: center;
    align-items: center;
    animation: hover_border 5s infinite, PPLoad 1s normal;
}

@keyframes PPLoad {
    from {
        opacity: 0%;
        transform: scale(.9);
    }
    to {
        opacity: 100%;
        transform: scale();
    }
}

.landing_profile_picture_container:hover {
    transform: scale(1.02);
}

@keyframes hover_border {
    0%{
        border-color: var(--color-border-white);
    }
    50%{
        border-color: var(--color-white-transparent);
    }
    100%{
        border-color: var(--color-border-white);
    }
}

.landing_profile_picture_container img {
    width: 100%;
    height: 100%;

    transition: 3s ease;
    object-fit: cover;
}

.landing_profile_picture_container img:hover {
    transform: scale(1.02);
}

.landing_profile_txt_container {
    width: fit-content;
    height: fit-content;

    display: flex;
    flex-direction: column;
    gap: 5px;

    position: relative;
}

.landing_profile_txt_header, .landing_profile_txt_description {
    font-family: var(--outfit-font);
    color: var(--color-white);
    text-align: left;
    line-height: 1;

    position: relative;
}

.landing_profile_txt_header {
    font-size: 6rem;
    font-weight: bold;

    animation: textload 1s forwards;
    left: 50px;
}

.landing_profile_txt_description {
    font-size: 3rem;
    font-weight: 100;
    opacity: var(--text-opacity);

    animation: textload 1s forwards 0.1s;
    left: 75px;
}

@keyframes textload {
    from {
    }
    to {
        left: 0px;
    }
}
  