body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.about-me {
    font-size: 2em;
}

.sticky-ftr {
    width: auto;
    border-top: 1px solid grey;
    padding: 10px 15px;

}

.ulinks {
    color: whitesmoke;
    position: relative;
    text-decoration: none;
    transition: color .4s ease-out;
    padding-bottom: 4px;
}
  
.ulinks:hover {
    color: grey;
    right: 0;
    text-decoration: none;
}
  
.ulinks:hover:after {
    border-color: grey;
    right: 0;
}
  
.ulinks:after {
    border-radius: 1em;
    border-top: .1em solid grey;
    content: "";
    position: absolute;
    right: 100%;
    bottom: .14em;
    left: 0;
    transition: right .4s cubic-bezier(0,.5,0,1),
                border-color .4s ease-out;
}
  
.ulinks:hover:after {
  right: 0;
}

.soci {
    text-decoration: none;
    color: #efefef;
}

.social-icons {
    margin-top: 30px;
}

.social-icons i {
    font-size: 22px;
    margin: 10px;
    cursor: pointer;
}

.row div{
    padding-bottom: 30px;
}




.hidden {
    display: none;
}