/*!
 * Start Bootstrap - Resume v5.0.8 (https://startbootstrap.com/template-overviews/resume)
 * Copyright 2013-2019 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-resume/blob/master/LICENSE)
 */
:root {
    --main-text-color: #000000;
    --main-text-hl-color: #3baa6c;
    --main-background-color: #efefef
}

body {
    font-family: 'Montserrat', sans-serif;
    padding-top: 54px;
    background-color: var(--main-background-color);
    color: var(--main-text-color);
}

.language-selector {
    text-align: right;
    margin: 10px;
}

@media (max-width: 560px) {
    .language-selector {
        position: relative;
        top: 10px
    }
}

@media (max-width: 324px) {
    .language-selector {
        position: relative;
        top: 40px
    }
}

@media (min-width: 992px) {
    body {
        padding-top: 0;
        padding-left: 17rem;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    color: #000000;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
        line-height: 5.5rem;
    }

    h2 {
        font-size: 3.5rem;
    }

    h3 {
        font-size: 2rem;
    }

    p {
        text-align: justify;
    }
}

@media (max-width: 991px) {
    p {
        text-align: left;
    }

    .mobile-navbar {
        font-family: 'Share Tech Mono', monospace;
        text-align: left;
        letter-spacing: 0.05rem;
        color: var(--main-text-hl-color) !important;
    }

    .mobile-navlink {
        display: inline;
        text-align: left;
    }
}


@media (min-width: 1200px) {
    p.lead {
        margin-top: 0;
        margin-right: 250px;
    }

    p.nodate {
        margin-right: 250px;
    }
}

p.lead {
    font-size: 1.15rem;
    font-weight: 400;
}

.subheading {
    font-weight: 500;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
}

.social-icons a {
    display: inline-block;
    height: 3.5rem;
    width: 3.5rem;
    background-color: #000000;
    color: var(--main-text-hl-color) !important;
    border-radius: 100%;
    text-align: center;
    font-size: 1.5rem;
    line-height: 3.5rem;
    margin-right: 1rem;
}

.social-icons a:last-child {
    margin-right: 0;
}

.social-icons a:hover {
    background-color: rgba(0, 0, 0, 0.82);
}

.dev-icons {
    font-size: 3rem;
}

.dev-icons .list-inline-item i:hover {
    color: var(--main-text-hl-color);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--main-text-hl-color);
}

#sideNav .navbar-nav .nav-item .nav-link {
    font-family: 'Share Tech Mono', monospace;
    text-align: right;
    letter-spacing: 0.05rem;
}

#sideNav .navbar-toggler:focus {
    outline-color: var(--main-text-hl-color);
}

@media (min-width: 992px) {
    #sideNav {
        text-align: right;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        width: 11rem;
        height: 100vh;
    }

    #sideNav .navbar-brand {
        display: flex;
        margin: auto auto 0;
        padding: 0.5rem;
    }

    #sideNav .navbar-brand .img-profile {
        max-width: 13rem;
        max-height: 12rem;
    }

    #sideNav .navbar-collapse {
        display: flex;
        align-items: flex-start;
        flex-grow: 0;
        width: 100%;
        margin-bottom: auto;
    }

    #sideNav .navbar-collapse .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    #sideNav .navbar-collapse .navbar-nav .nav-item {
        display: block;
    }

    #sideNav .navbar-collapse .navbar-nav .nav-item .nav-link {
        display: block;
    }

    .mobile-navbar {
        display: none !important;
    }
}

section.resume-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 75rem;
}

section.resume-section .resume-item .resume-date {
    min-width: 0;
}

@media (min-width: 768px) {
    section.resume-section {
        min-height: 100vh;
    }

    section.resume-section .resume-item .resume-date {
        min-width: 20rem;
    }

    div.resume-content {
        width: 50rem;
    }
}

.bg-primary {
    background-color: #000000 !important;
}

.text-primary {
    color: var(--main-text-hl-color) !important;
}

a {
    color: var(--main-text-color);
}

a:hover, a:focus, a:active {
    color: var(--main-text-hl-color);
}

.typewriter {
    color: var(--main-text-color);
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .10em solid var(--main-text-color); /* The typwriter cursor */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .1em; /* Adjust as needed */
    animation: blink-caret .7s step-end infinite;
}

@media (max-width: 530px) {
    div.typewriter {
        font-size: 1rem;
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to {
        border-color: transparent
    }
    50% {
        border-color: var(--main-text-color)
    }
}