.container, .page-footer, #mainNavbar{
    animation: transitionIn 0.75s;
}


@keyframes transitionIn {
    from {
        opacity: 0;
        transform: rotateX(-10deg);
    } to {
        
            opacity: 1;
            transform: rotateX(0);
        
    }
}
#mainNavbar .navbar-brand {
    color: black;
    font-size: 2rem;
}
#mainNavbar {
    font-size: 1.5rem;
    font-weight: 100;    
}

.profile-pic-div{
    height: 120px;
    width: 120px;
    /* position: absolute; */
    margin-left: 50%;
    transform: translate(-50%,-15%);
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid grey;
}

#photo{
    height: 100%;
    width: 100%;
}

#file{
    display: none;
}

#uploadBtn{
    height: 40px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: wheat;
    line-height: 30px;
    font-family: sans-serif;
    font-size: 15px;
    cursor: pointer;
    display: none;
}
