/*----------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------- index.html ------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------------*/

#intro {
    display: flex;
    width: 100%;
    height: 1400px;
    background-color: #e9e9e9;
    color: var(--color-intro-main);
    font-family: var(--font-intro-main);
    background-position: center;
    background-size: cover;
}

#intro_pic {
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05)0%, rgba(0, 0, 0, 0.05)100%), url(../profile_pic.JPG);
    background-position: center;
    background-size: cover;
}

.intro_txt {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    margin-left: 10%;
}

.intro_txt_greeting {
    width: 120px;
    color: var(--color-intro-highlight);
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    transition: all 0.8s ease;
}

.intro_txt_greeting:hover {
    transform: translateY(-10px);
}

.intro_txt_name {
    font-size: 600%;
    font-weight: 500;
    font-style: normal;
    padding-top: 10px;
}

.intro_txt_location {
    margin-bottom: 240px;
    padding-top: 30px;
    font-size: 200%;
}

