body {
    font-family: 'Poppins', 'OpenSans';
    background: #181818;
    margin: 10px;
}

.container {
    height: 100%;
    width: 100%;
}

.container .profilePanel {
    height: auto;
    width: 100%;
    border-radius: 25px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}

.container .profilePanel .profileImg {
    vertical-align: middle;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin: 0 auto;
    vertical-align: middle;
    display: inline-block;
}

.container .profilePanel #profileName {
    height: auto;
    width: auto;
    margin: 10px 0px 0px 0px;
    color: #FFFFFF;
}

.container .linkButton {
    background-color: #FFFFFF;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 25px;
    padding: 20px 10px;
    margin-top: 10px;
    cursor: pointer;
}

.container .linkButton .buttonText {
    margin: 0px 0px 0px 10px;
    text-align: center;
}

.container .footer {
    width: 100%;
    height: 100px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.container .footer .footerLink {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
}

.container .footer .footerLink .footerText {
    margin: 0px 10px;
    text-align: center;
    color: #999;
    text-decoration: none;
}

.container .footer .footerLicense {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
}

.container .footer .footerLicense .footerText {
    color: #999;
    text-align: center;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
