body {
    font-family: 'Sora', sans-serif;
    color: white;
    background-color: #0A0A0A;
}

.lead, p, ul, li, h5 {
    color: #C7C7C7;
}

.card-title {
    color: white;
}

.navbar {
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    background-color: #0A0A0A;
}

.jumbotron {
    background-color: #1A1A1A;
    border-radius: 12px;
}

.skill-icons {
    font-size: 5rem;
    color: #D3E97A;
    margin-bottom: 1rem;
}

footer {
    background-color: #0A0A0A;
    box-shadow: 0 -2px 4px rgba(255, 255, 255, 0.1);
}

.jumbotron .row {
    align-items: center;
}

.jumbotron .img-fluid {
    min-width: 300px;
    padding: 10px 10px;
}

.img-fluid {
    border-radius: 1.25em;
}

.btn {
    border-radius: 40px;
    padding: 10px 16px;
    color: #0A0A0A;
    background-color: #D3E97A;
    border-width: 0px;
}

.btn:hover {
    color: #D3E97A;
    background-color: #0A0A0A;
    border-width: 0px;
}

.btn:active {
    color: #ffffff;
    background-color: #D3E97A;
    border-width: 0px;
}

.b-solid  {
    color: #D3E97A;
    background-color: #0A0A0A;
}

.b-solid:hover {
    color: #0A0A0A;
    background-color: #D3E97A;
}

.b-solid:active {
    color: #ffffff;
    background-color: #D3E97A;
    border-color: #0A0A0A;
    border-width: 0px;
}

.headline {
    color: white;
    font-size: large;
    font-weight: 600;
}

.link {
    color: #eeeeee;
    text-decoration: underline;
    font-weight: 500;
}

.link:hover {
    text-decoration: none;
    color: #D3E97A;
}

.container {
    align-items: center;
}

.skill-card {
    background-color: #1A1A1A;
    border-radius: 37px;
    border: #0A0A0A solid 25px;
}

.separator {
    height: 1px;
    width: 100%;
    background-color: #484848;
    margin-bottom: 1rem;
}

.navbar-brand {
    color: #C7C7C7 !important;
}

a {
    color: #D3E97A;
}

a:hover {
    color: white;
}

.form-control {
    background-color: #1A1A1A;
    border-color:#484848;
    color: #C7C7C7;
}

.form-control:focus {
    background-color: #484848;
    color: #C7C7C7;
}

.copyright {
    font-size: 0.85rem;
}

.image-container {
    background-color: #1A1A1A;
    padding: 40px 20px;
    border-radius: 12px;
}

.timeline {
    position: relative;
    padding: 2rem 0;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    transform: translateX(-10%);
    width: 4px;
    height: 100%;
    background-color: #D3E97A;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .timeline-icon {
    position: absolute;
    top: 0;
    left: 10%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1A1A1A;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #D3E97A;
    color: #D3E97A;
    font-size: 1.5rem;
  }
  
  .timeline-content {
    position: relative;
    width: 85%;
    padding: 1rem;
    margin-right: 5%;
    background-color: #1A1A1A;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    margin-left: 20%;
  }
  
  .timeline-content::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: -0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #1A1A1A;
    transform: rotate(45deg);
    left: -0.5rem;
    transform: rotate(-135deg);
  }
  
  .timeline-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .timeline-date {
    margin-bottom: 0.25rem;
    font-style: italic;
  }
  
  .timeline-company {
    font-weight: bold;
  }