/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
:root {
    --bgColor: white;
    --textColor: #777777;
    --accentColor-grey: #333;
	--font: 'Karla', sans-serif;
}

body{
    background-color: var(--bgColor);
}

#userPhoto{
    width: 80px;
    height: auto;
    display: block;
    margin: 35px auto 20px;
    border-radius: 50%;
}

#userName{
    color: #777;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

#userTitle{
    color: #bbb;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
	margin-top: 48px;
}
#userFooter{
    color: #777;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
	margin-top: 48px;
	margin-bottom: 48px;
}

#links{
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
}
.link-card{
    display: block;
    background-color: var(--bgColor);
    color: var(--textColor);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 0px 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
	margin-left: 20px;
    margin-right: 20px;
    border-radius: 16px;
	line-height: 1.5em;
    box-shadow: 0px 8px 24px rgb(0, 0, 0, 0.1);
}
.link-card:hover{
    box-shadow: 0px 2px 4px rgb(0, 0, 0, 0.1);

}
.link-card-icon{
    display: flex;
    background-color: var(--bgColor);
    color: var(--textColor);
    font-family: var(--font);
    margin-bottom: 20px;
    padding: 20px 0px 20px;
    text-decoration: none;
    font-size: 1rem;
    transition: all .25s cubic-bezier(.08,.59,.29,.99);
	margin-left: 20px;
    margin-right: 20px;
    border-radius: 16px;
	line-height: 1.5em;
    box-shadow: 0px 8px 24px rgb(0, 0, 0, 0.1);
}
.link-card-icon:hover{
    box-shadow: 0px 2px 4px rgb(0, 0, 0, 0.1);

}
.link-image
{
    width:100%;
    border-radius: 16px 16px 0px 0px;
    margin-top: -20px;
    margin-bottom: 20px;
}
.link-icon
{
    height:48px;
    border-radius: 8px;
    margin-left: 20px
}
.link-card-icon-text{
    display: block;
    margin-left:20px;
}
.longurl{
	font-size: smaller;
}
#socialfooter{
    max-width: 675px;
    width: auto;
    display: block;
    margin: 27px auto;
	text-align: center;
}

/* Style all font awesome icons */
.fa {
  padding: 21px;
  font-size: 30px !important;
  width: 40px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  margin: 3px;
  margin-bottom: 10px;
}

.fa:hover {
  opacity: 0.7;
}

.fa-instagram {
  background: #f00075;
  color: white;
}
.fa-facebook {
  background: #3B5998;
  color: white;
}
.fa-twitter {
  background: #55ACEE;
  color: white;
}
.fa-youtube {
  background: #bb0000;
  color: white;
}
.fa-spotify {
  background: #1DB954;
  color: white;
}

