
:root {
    --blue: #5e72e4;
    --indigo: #5603ad;
    --purple: #8965e0;
    --pink: #f3a4b5;
    --red: #f5365c;
    --orange: #fb6340;
    --yellow: #ffd600;
    --green: #2dce89;
    --teal: #11cdef;
    --cyan: #2bffc6;
    --white: #fff;
    --gray: #8898aa;
    --gray-dark: #32325d;
    --light: #ced4da;
    --lighter: #e9ecef;
    --dark: #212529;
    --darker: black;
    --neutral: #fff;
    
    --primary: #344767;
    --secondary: #72e9f3;
    --third: #6563ff;

    --basic: #172b4d;
    --default: #172b4d;
    --success: #2dce89;
    --info: #11cdef;
    --warning: #fb6340;
    --danger: #f5365c;
    
    --background: #f5f5f5;
    --surface: #fff;
    --on-primary: #fff;
    --on-secondary: #000;
    --on-background: #000;
    --on-surface: #545E6C;
}

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


html, body{
    /* font-family: 'Roboto', Arial, Helvetica, sans-serif; */
    background: var(--background);
    color: var(--on-surface);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 8px;
}

#app {
  background: #fff;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}


article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

a, a:hover{
    text-decoration: none;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}


hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}


a {
  color: var(--on-surface);
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}



.h1 {
  font-size: 2.5rem;
}

.h2 {
  font-size: 2rem;
}

.h3 {
  font-size: 1.75rem;
}

.h4 {
  font-size: 1.3rem;
}

.h5 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.my-name{
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
}

.my-name a{
  display: block;
  text-decoration: none;
  color: #333;
  font-weight: 800;
}


.timeline {
  margin-top: 1.5rem;
  padding-left: 0.5rem;
}

.timeline__item {
  border-left-color: #E9EDF0;
  border-left-width: 1px;
  border-left-style: solid;
  padding-bottom: 0.5625rem;
  padding-left: 1.375rem;
  position: relative;
}

.timeline__item::before {
  content: '';
  background-color: #555;
  box-shadow: 0 0 0 0.1875rem rgb(0 0 0 / 20%);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: -0.3125rem;
  height: 0.625rem;
  width: 0.625rem;
}

.designation{
  background: #E9EDF0;
  border-radius: 20px;
  padding: 6px 20px;
  display: inline-block;
}

