body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;

    margin: 0;

    font-family: "Instrument Sans", sans-serif;

    background-color: #3d2f52;
}

header{
    top: 0; 
    left: 0; 
    width: 100%;
}

main{
    flex: 1;
}

footer{
    width: 100%;

    bottom: 0;      
    left: 0;        
    right: 0;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}

.bold{
    font-weight: 600;
}

.line {
    clear: both;
    height: 1px;
    line-height: 1px;
    margin: 5px 0px 5px 0px;
    border-bottom: 1px solid #999;
}

.content-container{
    display: flex;
    

    /* min-height: 100vh; */

    margin-top: 5%;
    margin-bottom: 5%;

    padding: 30px;

    background-color: #3c3744;
    border-radius: 15px;
    border: 1px solid #99999949;

    color: white;
    transition: all 0.3s;
}

.content{
    flex: 1;
    padding: 10px;
    width: 100%;
}

.avatar-container{
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 350px;
}

.author{
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    padding: 10px;
    margin-top: 10px;

    background: linear-gradient(150deg,rgba(173, 133, 255, 1) 0%, rgba(133, 71, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.avatar{
    margin-right: 25px;
    transition: all 0.3s;
}

.avatar > img{
    border-radius: 35px;
    margin: 10px;
    width: 100%;
    height: 100%;
    border: 3px solid #0000007c;
}

.links{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;

    gap: 10px;

    max-width: 100%;
}

.links > a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    white-space: nowrap;
}

.links > a:hover{
    color: #c39eff;
}

.links > a > img{
    margin-right: 3px;
    width: 25px;
    height: 25px;
}

.links > a{
    color: white;
    text-decoration: none;
}
