:root {
    --neon: 168, 127, 248;
}

h1 {
    margin: .5em 0 .5em
}

.inner hr {
    margin: .5em 0 .5em
}

s {
    color: gray;
}

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

body {
    font-family: "Montserrat", sans-serif;
    background: #0f0f0f;
    width: 100%;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    overflow: scroll;
}

h1 {
    font-size: 40px;
    text-align: center;
}

h4 {
    margin: 1em;
}

h1 {
    font-size: 2.5em;
    line-height: 1.1em;
}

h2 {
    font-size: 1.75em;
    line-height: 1.25em;
}

h3 {
    font-size: 1.4em;
    margin: 0;
}

h4 {
    margin: 0;
    font-size: 105%
}

h1:target,
h2:target,
h3:target,
h4:target,
h5:target,
h6:target {
    background: var(--highlight-color);
    padding: .2em 0
}

.rnd-btn {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border: none;
    border-radius: 45px;
    -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
}

.rnd-btn:hover {
    background-color: rgb(var(--neon));
    -webkit-box-shadow: 0px 15px 20px rgba(var(--neon), 0.4);
    box-shadow: 0px 15px 20px rgba(var(--neon), 0.4);
    ;
    color: #fff;
    -webkit-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    transform: translateY(-7px);
}

button:active {
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
}

#icons01 button {
    padding: 0;
    width: 4em;
    height: 4em;
    border-radius: 100%;
    background-color: #0f0f0f;
}

#more-btn {
    margin: 1em 0 0;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.inner>p span {
    font-weight: 600;
}

#list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 666px) {
    #list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 333px) {
    #list {
        grid-template-columns: repeat(1, 1fr);
    }
}

#list>div {
    background-color: #262626;
    margin: 1em;
    padding: 1em;
    border-left: .325em solid #3c3c3c;
    border-radius: 2em;
}

#list>div h3 {
    margin-bottom: .5em;
}

.rps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.rd-pill {
    border-radius: 50rem;
    background-color: #666666;
    width: fit-content;
    padding: 0 .5em;
    margin: .25em;
    justify-content: center;
    height: 1.5em;
}

.ss {
    margin-left: 20px;
}

.rpi {
    max-width: 1em;
    text-align: center;
    position: absolute;
    margin-top: 4px;
}

a {
    text-decoration: none;
}

h1 {
    margin: 1em 0;
}

h2 {
    margin: .5em 0;
}

p {
    margin: .325em 0;
}

#history {
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

.vtl::after {
    content: "";
    display: table;
    clear: both;
}

.vtl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 4px;
    background: #272727;
}

.vtl {
    width: 95%;
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
}

.vtl-element::after {
    content: "";
    display: table;
    clear: both;
}

.vtl-element:first-child {
    margin-top: 0;
}

.vtl-element {
    position: relative;
    margin: 2em 0;
    margin-top: 2em;
}

.vtl * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.vtli {
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.vtl-element-content::after {
    content: "";
    display: table;
    clear: both;
}

.vtlc {
    position: relative;
    margin-left: 60px;
    background: #272727;
    border-radius: 1em;
    padding: 1em;
    margin-bottom: 2em;
}

.vtlca {
    content: "";
    position: absolute;
    top: 16px;
    right: 100%;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right-color: #272727;
}

.bpill {
    font-size: 11px !important;
    background-color: #f9f5e9 !important;
    color: rgb(255, 255, 255);
    padding: 5px 8px !important;
    vertical-align: baseline;
    font-weight: lighter !important;
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
    display: inline-block;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: .5rem !important;
    margin-right: .5rem !important;
}

@media(max-width: 1170px) {
    .experience-icon {
        font-size: 170%;
        margin-top: 27%;
        text-align: center;
    }
}

.experience-icon {
    font-size: 300%;
    margin-top: 25%;
    text-align: center;
}

.vtli {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    -webkit-box-shadow: 0 0 0 4px #272727, inset 0 2px 0 rgba(0, 0, 0, .08), 0 3px 0 4px rgba(0, 0, 0, .05);
    box-shadow: 0 0 0 4px #272727, inset 0 2px 0 rgba(0, 0, 0, .08), 0 3px 0 4px rgba(0, 0, 0, .05);
    background: #7b2d2d none repeat scroll 0% 0%;
    color: rgb(255, 255, 255);
    text-align: center;
}

.vtl>div {
    position: relative;
}

ul {
    padding-left: 1.2rem;
}

#about-me {
    margin: 1em;
}

hr {
    margin: 1em 0;
}

.om {
    margin: 1em;
}

article a {
    text-decoration: underline;
}

.topnav {
    overflow: hidden;
    background-color: #333;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: #04AA6D;
    color: white;
}

.topnav .icon {
    display: none;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}