body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 100vw;
    background-image: url('../img/background.jpg');
    background-position: center;
    background-size: cover;
}
main{
    flex: 1 0 auto;
}
.profile-image{
    max-width: 90px;
    max-height: 90px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #444;
    object-fit: cover;
    user-select: none;
}
h6{
    color: #fff;
}
.link{
    margin: auto;
    padding: 16px 0 !important;
    background-color: rgba(255,255,255, .15);
    color: #fff;
    transition: all linear .2s;
    letter-spacing: 2px;
}
.link a{
    color: currentColor;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
}
.link:hover{
    background-color: rgba(255,255,255,1);
    color: #000;
}
.footer{
    color: #fff;
}
.footer a{
    color: currentColor;
}