.intro-photo {
    text-align: center;
    display: flex;
    align-items:center;
    flex-direction: column;
    justify-content:center;
}

.intro-photo .vector-bottom{
    width: 500px !important;
    margin-top: -25px;
}

.intro-photo .main-photo{
    width: 50%;
    max-width: 400px;
    opacity: 0.7;
    animation: slideUp 2s ease-in-out;
    animation-fill-mode: forwards;
    filter: var(--dropShadowSmooth) ;
}

.intro-photo h1{
    font-size: 95px;
    color: var(--colorIntroText);
    animation: slideUp 1s ease-in-out;
    animation-fill-mode: forwards;
    font-family: var(--main-font);
    font-weight: 200;
    margin-bottom: 10px;
}
.intro-photo h2{
    font-size: 25px !important;
    color: var(--colorIntroText);
    font-weight: 600;
    animation: slideUp 1s ease-in-out;
    animation-fill-mode: forwards;
    font-family: var(--main-font);
    /* text-shadow: var(--firstTextShadow); */
    margin-top: 0;
    font-weight: 200;
    margin-bottom: 0rem;
    width: 80%;
}
.intro-photo h3{
    color: var(--colorIntroText);
    font-size: 40px !important;
    margin-top: 0px;
    font-weight: 600;
    font-family: var(--main-font);
    text-shadow: var(--text-shadow);
    animation: slideUp 1s ease-in-out;
    animation-fill-mode: forwards;
}

.intro-photo h4{
    color: var(--colorIntroText);
    font-size: 30px !important;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: -10px;
    font-family: var(--main-font);
    text-shadow: var(--text-shadow);
    animation: slideUp 1s ease-in-out;
    animation-fill-mode: forwards;
}

.other-content {
    padding: 20px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

@media (max-width:748px) {
    .parallax {
        padding-top: 50px;
    }
    .intro-photo h1{
        margin-top: 1rem;
        font-size: 56px;
    }
    .intro-photo h2{
        font-size: 36px;
    }
    .intro-photo .vector-bottom{
        width: 300px !important;
    }
}

@media (max-width:576px) {
    .intro-photo img{
        max-width: 400px;
        min-width: 300px;
    }
}


@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}