/*! Typebase.less v0.1.0 | MIT License */


/* Setup */

html {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 137.5%;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

/* Menu */

.services {
    list-style-type: disc;
}

.menu-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.btn-action {
    background-color: #fff000;
    color: #222;
}


/* Copy & Lists */

#portfolio .portfolio-grid {
    display: grid;
    margin-top: 1rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

#portfolio .portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

#portfolio blockquote {
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    #portfolio .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

p {
    line-height: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

ul,
ol {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: none;
}

ul li,
ol li {
    line-height: 1.5rem;
    text-align: justify;
}

ul ul,
ol ul,
ul ol,
ol ol {
    margin-top: 0;
    margin-bottom: 0;
}

blockquote {
    line-height: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

blockquote::after {
    content: '';
    background-color: #222;
    bottom: -24px;
    height: 2px;
    left: 0;
    position: absolute;
    width: 4%;
    display: none;
}

img {
    max-width: 50%;
    height: auto;
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    filter: none;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    border: 1px solid white;
}

:hover img {
    filter: brightness(85%);
    border: 1px solid whitesmoke;
}

.avatar {
    width: 50%;
    height: auto;
    border-radius: 50%;
  }

.logo {
    width: auto;
    height: 32px;
    vertical-align: bottom;
    margin-top: 10px;
}

.logo-links {
    width: auto;
    height: 32px;
    margin-left: 48px;
    margin-right: 48px;
    vertical-align: sub;
    margin-top: 10px;
}


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5rem;
}

h1 {
    font-size: 4.242rem;
    line-height: 4.5rem;
    margin-top: 3rem;
}

h2 {
    font-size: 2.828rem;
    line-height: 3rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.414rem;
}

h4 {
    font-size: 0.707rem;
}

h5 {
    font-size: 0.4713333333333333rem;
}

h6 {
    font-size: 0.3535rem;
}


/* Tables */

table {
    margin-top: 1.5rem;
    border-spacing: 0px;
    border-collapse: collapse;
}

table td,
table th {
    padding: 0;
    line-height: 33px;
}


/* Code blocks */

code {
    vertical-align: bottom;
}


/* Leading paragraph text */

.lead {
    font-size: 1.6rem;
    line-height: 1.3;
    display: inline-block;
}


/* Hug the block above you */

.hug {
    margin-top: 0;
}

main {
    width: 550px;
    margin: 0 auto;
}

blockquote {
    margin-left: 0;
    margin-right: 0;
}

blockquote p:before {
    content: '“';
    font-size: 1.25em;
    font-weight: bold;
}

blockquote p:after {
    content: '”';
    font-size: 1.25em;
    font-weight: bold;
}

blockquote footer {
    color: #888;
}

a {
    color: #222;
}

a:hover,
a:focus {
    color: #0d82df;
}

a.btn {
    background-color: #0d82df;
    border: none;
    color: white;
    padding: 4px 38px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 2px;
    -webkit-transition-duration: 0.3s; /* Safari */
    transition-duration: 0.3s;
    cursor: pointer;
}

a.btn:hover,
a.btn:focus {
    filter: brightness(110%)
}

a.btn-action {
    background-color: #fff000;
    color: #222;
}

@media only screen and (max-width: 768px) {
    body {
        margin: 16px;
    }
    main {
        width: 100%;
    }
}