@font-face {
    font-family: 'HennyPenny';
    src: url('hennypenny-regular-webfont.woff2') format('woff2'),
         url('hennypenny-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font: 'HennyPenny', serif;
}

body{
    background-color: #0C0910;
    color: white;
    font-family: var(--font);
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    display: flex;
    min-height: 100vh;
    min-width: 100vw;
    flex-direction: column;

}

.container {
    flex: 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.content{
    display: flex;
    flex-direction: column;
    flex: 1 auto;
    align-items: center;
    justify-content: center;
    margin: 0;
}

footer{
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 20px;
    text-decoration: none;
}

.footer{
    text-decoration: none;
    font-weight: 400;
    color: white;
}

.footer_bold{
    text-decoration: none;
    font-weight: 700;
    color: white;
}

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

#userName{
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    line-height: 1.25;
    display: block;
    color: white;
}

#links{
    max-width: 90%;
    width: auto;
    display: block;
    margin: 27px auto;
}

.link{
    display: block;
    margin-bottom: 20px;
    padding: 17px;
    font-size: 1.25rem;
    font-weight: 400;
    border-radius: 5px;
    border: solid 2px;
    border-color: #555555;
    text-align: center;
    text-decoration: none;  
    color: white;  
    word-wrap: break-word;

}

.link_dash{
    display: block;
    margin-bottom: 20px;
    padding: 17px;
    font-size: 1.5rem;
    font-weight: 400;
    border-radius: 5px;
    border: dashed; 2px;
    border-color: #555555;
    text-align: center;
    text-decoration: none;  
    color: white;  
    word-wrap: break-word;

}


  