#my-photo{
    position:relative;

}
#hello,
#yue {
    color:white;
    font-size:6.5vw;
    position:absolute;
    text-shadow: 1px 1px 10px #070102;
    font-family:"Pacifico";
    letter-spacing:4px;

    -webkit-animation: emerge 1.5s forwards; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: emerge 1.5s forwards; /* Firefox < 16 */
    -ms-animation: emerge 1.5s forwards; /* Internet Explorer */
    -o-animation: emerge 1.5s forwards; /* Opera < 12.1 */
    animation: emerge 1.5s forwards;
}

#hello{
    top:15%;
    left:5%;
}
#yue{
    top:calc(15% + 10vw);
    left:5%;
    opacity: 0;
    animation-delay: 0.8s;
}

.section{

    border-radius: 30px;
}

a{
    color: #379a7e;
}
a:hover{
    text-decoration: none;
}
.fullwidth-pic{
    width:100%;
}

.container{
    margin-bottom: 50px;
}

.insititution{
    color: #379a7e;
    font-family: "Open Sans";
}
.position{
    color: #000000;
    font-size: large;
    font-family:'Montserrat', sans-serif;

}
.location{
    color: rgba(18, 48, 35, 0.47);
    font-size: large;
}

.subtitle{
    text-align: center;
    margin: 30px;
    font-family:"Open Sans", sans-serif;
    font-weight: 700;
    color: #333333;
}

.opening{
    font-weight: bold;
    font-size: larger;
}

#w4logo{
    width: 55%;
}

a.my-card-link{
    font-style: italic;
    color: #379a7e;
    position: absolute;
    bottom: 20px;
}

.about_me_section{
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.05);
}

.timeline-section{
    padding:10px 0;
}
/*here is about adding lines*/

.subtitle:before,
.subtitle:after {
    background-color: #333333;
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 10%;
}

.subtitle:before {
    right: 0.5em;
    margin-left: -50%;
}

.subtitle:after {
    left: 0.5em;
    margin-right: -50%;
}
/*here ends about lines*/

.my-card{
    padding: 20px;
    margin:0px 20px;
    background:white;
    border-radius: 20px;
    position:relative;
    padding-bottom: 40px;
}

.my-card-parent{
    display:flex;
    align-items: stretch;
}
.footer{
    text-align: center;
    padding:20px;
    background: #3db587;
    color:white;
    position:relative;
}
.footer a{
    color:white;
    font-style: italic;

    font-family: 'Bellefair', serif;
    font-size: large;
}

@media only screen and (max-width: 575px) {
    .subtitle{
        font-size:20px ;
        font-weight: bold;
    }
    .insititution{
        font-size: 18px;
    }
    .position{
        font-size: 16px;

    }
    .logobg{
        display:none;
    }
.my-card{
    margin-bottom: 15px;
}
.about_me_section{
    padding-bottom:0;
}
.timeline-section{
    padding:0;
}
}
@keyframes emerge {
    from {
        opacity: 0;
        transform: translate(0, 20px);
    }
    to   {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Firefox < 16 */
@-moz-keyframes emerge {
    from {
        opacity: 0;
        -moz-transform: translate(0, 20px);
    }
    to   {
        opacity: 1;
        -moz-transform: translate(0, 0);
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes emerge {
    from {
        opacity: 0;
        -webkit-transform: translate(0, 20px);
    }
    to   {
        opacity: 1;
        -webkit-transform: translate(0, 0);
    }
}

/* Internet Explorer */
@-ms-keyframes emerge {
    from {
        opacity: 0;
        -ms-transform: translate(0, 20px);
    }
    to   {
        opacity: 1;
        -ms-transform: translate(0, 0);
    }
}

/* Opera < 12.1 */
@-o-keyframes emerge {
    from {
        opacity: 0;
        -o-transform: translate(0, 20px);
    }
    to   {
        opacity: 1;
        -o-transform: translate(0, 0);
    }
}