@import url('https://fonts.googleapis.com/css?family=Karla&display=swap'); /*Karla*/
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap'); /*Anton*/
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap'); /*Abril*/

@charset "utf-8";
/*------------------------------------*\
    $RESET
\*------------------------------------*/
/* A more considered reset; more of a restart... As per: csswizardry.com/2011/10/reset-restarted */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, tt, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
}
article, aside, details, figcaption, figure, footer,
header, hgroup, menu, nav, section {
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
strong, b, mark {
    font-weight: bold;
    font-style: inherit;
}
em, i, cite, q, address, dfn, var {
    font-style: italic;
    font-weight: inherit;
}
abbr[title], dfn[title] {
    cursor: help;
    border-bottom: 1px dotted;
}
ins {
    border-bottom: 1px solid;
}
a, ins {
    text-decoration: none;
}
del, s {
    text-decoration: line-through;
}
pre, code, samp, kbd {
    font-family: monospace;
}
small {
    font-size: 0.75em;
}
img {
    border: none;
    font-style: italic;
}
input,
select, option, optgroup,
textarea {
    font: inherit;
}


/*------------------------------------*\
    $MAIN
\*------------------------------------*/
html {
    background-color: #2A2032; 
    color: #faeee7;
    font: 15px/1.5 'Karla', sans-serif;
    padding-bottom: 50px;
}
body {
    margin: 10%;
}

.avatar {
    float:center;
    margin: 0 40px 20px 0;
}
    .avatar img {
        max-width: 110px;
        max-height: 110px;
        border-radius: 80px;
    }

.content {
    float: left;
    width: 700px;
}
    .title {
        font-family: 'Anton', sans-serif;
        font-size: 48px;
        color: #AD99C2;
        font-weight: normal;
        line-height: 1;
    }
    .smtitle {
        font-family: 'Anton', sans-serif;
        font-size: 24px;
        color: #AD99C2;
        font-weight: normal;
        line-height: 1;
    }





/*------------------------------------*\
    $TYPOGRAPHY
\*------------------------------------*/
p,
ul, ol, dl,
.title {
    margin-bottom: 20px;
}
p {
    /*font-weight: bold;*/
    margin:0 0 10px 0; 
}
ul, ol, dl {
    /*font-weight: bold;*/
    list-style-type: none;
}
li {
    margin:0 0 12px 0;   
}
a {
    color: #AD99C2;
    font-weight: bold;
}
a:hover{
    color: #faeee7;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    -ms-transition: color 0.2s ease;
    transition: color 0.2s ease;
}


/*------------------------------------*\
    $MISC
\*------------------------------------*/
a img:hover,
.social-icons a:hover {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
    filter: alpha(opacity=85);
    opacity: 0.85;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}




/*------------------------------------*\
    $MOBILE
\*------------------------------------*/
@media handheld, only screen and (max-width: 720px) {
    .avatar,
    .content {
        float: none;
        
    }

    .avatar img {
        max-width: 125px;
        max-height: 125px;
    }

    .content {
        width: 100%;
    }
}

/*
MENU STUFF
*/
.menu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #2A2032;
    }

.menu li {
        float: right;
    }

.menu li a {
        display: block;
        color: #AD99C2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

.menu li a:hover {
        color: #faeee7;
    }
}

table {
        border-collapse: collapse;
        border: none;
    margin-left: auto;
    margin-right: auto;
    }
    th, td {
        border: none;
    }
