@keyframes contentSlideUp{
    0%{
        opacity: 0;
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}


.parent-container{
    position:relative;
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.container-main{
    animation: contentSlideUp 1s ease-in-out;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    padding: 15% 10%;
    color:white;
}

.container-main h1{
    display:inline-block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container-main p{
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin-right: 50%;
    margin-bottom:1%
}

.photo-main{
    animation: contentSlideUp 1s ease-in-out;
    position:absolute;
    left:65%;
    bottom:20%;
    width: 300px;
}
