*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Karla', sans-serif;
    color: white;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-picture{
    border-radius: 50%;
    width: 96px;
    height: 96px;
    display: block;
    object-fit: cover;
    object-position: top center;
    border:2px solid rgba(9,32,41,1);
}

.profile-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 50px;
    margin-bottom: 50px;
}

.bio-name{
    font-size: 16px;
    font-weight: normal;
    margin: 15px 0px;
}

body{
    min-height: 100vh;
    padding-bottom: 50px;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(16,12,57,1) 60%, rgba(157,55,145,1) 100%); 
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 50px;
}
a{
    color: inherit;
    text-decoration: none;
}

.link-container{
    width: 100%;
    /* max-width: 400px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.link {
    width: 100%;
     max-width: 675px;
    text-align: center;
    margin: 10px 0px;
    color: white;
}

.cat-title{
    margin: 15px 0px;
}

.link-url{
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 1em;
    width: 90%;
    padding: 10px;
    border: 1px solid white;
}

.link-url:hover, .link-url:active {
    color: black;
    background-color: white;
}