@import url(fonts/cantarell/cantarell.css);

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

    font-family: 'Cantarell', 'Segoe UI', sans-serif;
}

body{
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color:  #222;

    --bgcolor: #222;
    --card-color: #333;
    --text-color: #fff;
    /*--border-color: #a0f;*/
    --border-color: #444;

    color: var(--text-color);
}
.wrapper{
    flex:1;
    display: flex;
    margin: 1rem;
    gap: 1rem;
    
}

.item{
    flex:1;
    max-width: 100%;
}

.icon{
    height: 1em;
}

.card{
    padding: 1rem;
    border: 4px solid var(--border-color);
    box-shadow: 0px 4px 0px rgba(0,0,0,0.5);
    background-color: var(--card-color);

    border-radius: 8px;

}
.profile-pic{
    height: 6rem;
    padding: 0rem;
}

.links{
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.link{
    display: flex;
    border: 4px solid var(--border-color);
    padding: .5rem;
    box-shadow: 0px 4px 0px rgba(0,0,0,0.5);

    text-decoration: none;
    color: unset;

    gap: .25em;
    
    display:flex;
    align-items: center;
    flex-direction: row;

    border-radius: 8px;
}

.interactive{
    margin-top: 0px;
    margin-bottom: 4px;
    transition: all cubic-bezier(0.95, 0.05, 0.795, 0.035) 50ms;
    box-shadow: 0px 4px 0px rgba(0,0,0,0.5);
}
.interactive:hover{
    margin-top: 2px;
    margin-bottom: 2px;
    box-shadow: 0px 2px 0px rgba(0,0,0,0.5);

}

.flex-horizontal{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}
.flex-align-start{
    align-items: start;
}
.dash-list{
    margin-left: 1em;
    list-style-type: none;
}
.dash-list > li:before{
    content:"-";
    margin-right: .5em;
}

.column{
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    max-width: 40ch;
}