body {
    font-family: 'IBM Plex Mono', sans-serif; /* General body font */
    color: #6b7280;
    background-color: #f8f9fa;
}

h1 {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
    color: #111827;
}

h2 {
    font-size: 1.4rem;
    font-weight:500;
    color:#111827
}

h3 {
    font-size: 1.2rem;
    font-weight:500;
    color:#111827
}

p {
    font-size: 1rem;
    line-height: 1.5;
}

aside.skills {
    color: #6b7280;
}

aside span {
    font-size: 1rem;
    /*line-height: 0rem;*/
    display: block;
}

.btn-primary {
    background-color: #111827;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
}

.btn-link {
    color: #0f6e87;
    text-decoration: none;
}

.btn-link:hover {
    color: #0a4a5e;
    text-decoration: underline;
}

.navbar-toggler:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

#recent-work {
    scroll-margin-top: 100px; /* Adjust this value based on your navbar height */
}

/* Extra small devices (portrait phones, less than 576px) */
@media (min-width: 575.98px) { 
    /* Your custom styles for extra small devices */
    .intro {
        padding:0 32px 0 0;
    }

/*     .skills {
        padding: 0 0 0 32px;
    } */
}

/* Small devices (landscape phones, less than 768px) */
@media (min-width: 767.98px) { 
    /* Your custom styles for small devices */

    .skills {
        padding: 0 0 0 32px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 991.98px) { 
    /* Your custom styles for medium devices */
    
    /*
    .intro {
        height: 75vh;
    }
    */
}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 1199.98px) { 
    /* Your custom styles for large devices */
}

/* Extra large devices (large desktops, less than 1400px) */
@media (min-width: 1399.98px) { 
    /* Your custom styles for extra large devices */
}

/* Extra extra large devices (larger desktops) */
@media (min-width: 1400px) { 
    /* Your custom styles for extra extra large devices */
}




.custom-container {
    max-width: 1280px !important;
    margin: 0 auto;
}


.custom-section .container {
    max-width: 1280px;
}

.row {
    padding-top: 32px;
    padding-bottom: 32px;
}


/* brand and logo */
.brand {
    display: flex;
}

.logo {
    display: none;
}

.name-title {
    display: flex;
    flex-direction: column;
    align-self: center;
}

.name {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    color: #111827;
}

.job-title {
    font-size: .9rem;
    line-height: 1.25;
}

.rounded-circle {
    border-radius: 50%;
    /* border: 2px solid #d9c6c698; */
    padding: 5px;
    background-color: #e3e2e279;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

/* tablet and desktop */

@media (min-width: 768px) {

    .logo {
        font-weight: bold;
        color: #0dcaf0;
        font-size: 2rem;
        padding: .7rem 1.2rem;
        background-color: #111827;
        border-radius: 0.375rem;
        align-self: center;
        margin-right: 1rem;
        display: inline-block;
    }

}