body {
    text-align: center;
    font-family: monospace, sans-serif;
    color: rgb(220, 220, 220);
    background-color: rgb(25, 25, 25);
    background-size: cover;
    padding-left: 12%;
    padding-right: 12%;
}

h1 {
    text-align: center;
}

p {
    text-align: justify;
    line-height: 1.5;
}

footer {
    position: static;
    top: 1000px;
    bottom: 0px;
    width: 100%;
    height: 60px;
    margin-bottom: 25px;
  }

a {
    color:aquamarine;
}

ul {
    text-align: left;
}

figcaption {
    font-style: italic;
    color: darkgray;
}

.topnav {
    padding-bottom: 100px;
    background-color: transparent;
    overflow: hidden;
}

.topnav a {
    float: left;
    color: darkgray;
    text-align: center;
    padding: 12px 12px;
    text-decoration: none;
    font-size: 20px;
  }

.topnav a:hover {
    color: rgb(255, 255, 255);
}

.aboutme {
    width: max-content;
    height: auto;
    font-size: 20px;
    margin: auto;
    border-style: solid;
    border-color:mintcream;
    padding: 10px;
}

.portfolio {
    width: max-content;
    height: fit-content;
    margin: auto;
    border-style: solid;
    border-color:mintcream;
    padding: 25px;
}

.index {
    border-style: solid;
    border-color:mintcream;
    width: max-content;
    height: fit-content;
    margin: auto;
    padding: 25px;
    margin-top: 100px;
}

i.fab, i.fas {
    font-size: 36pt;
    color: rgb(255, 255, 255);
    padding: 1%;
}



 /* The switch - the box around the slider */
 .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: darkgray;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: black;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #FDB517;
    top: 0;
    bottom: 0;
    left: 0%;
    margin-left: -3px;
  }

  .container {
    padding: 10px 40px;
    position: relative;

    background-color: inherit;
    width: 100%;
    left: 0%;
  }

  .container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: rgb(255, 255, 255);
    border: 4px solid #EF4623;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    left: -16px;
  }
  /* The actual content */
  .content {
    padding: 20px 30px;
    background-color: #096C94;
    position: relative;
    border-radius: 12px;
  }

  .contentPar {
    text-align: left;
    width: 60%;
    padding-left: 20%;
  }

  .timelineTitle {
    border-color: transparent;
    width: fit-content;
  }

/*
#FDB517 - yellow
#EF4623 - red
#096C94 - blue
#2D8841 - green
*/