:root{
  --color: #f1f1f1;
}

body {
    background-color: #d7d7d7;
    color: black;
}

.about-me {
    background-color: var(--color);
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
}
.projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
  }
  
  .projects-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .projects-list-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
  }
  
  .projects-list-item:hover {
    transform: scale(1.05);
  }
  
  .projects-list-item-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  .projects-list-item-title {
    font-size: 1.5em;
    margin: 10px 0;
  }
  
  .projects-list-item-description {
    font-size: 1em;
    color: #666;
  }

  .copyright-text {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    color: #333;
    font-size: 0.9em;
    border-top: 1px solid #ddd;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
  }

  .navbar {
    background-color: #333;
    overflow: hidden;
  }
  
  .navbar-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  .navbar-item {
    margin: 0 15px;
  }
  
  .navbar-link {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
  }
  
  .navbar-link:hover {
    background-color: #ddd;
    color: black;
  }

  .about-me-img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    width: 150px; 
    height: 150px; 
    object-fit: cover;
  }

  .projects-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
  }
  
  .projects-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .projects-list-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
  }
  
  .projects-list-item:hover {
    transform: scale(1.05);
  }
  
  .projects-list-item-link {
    text-decoration: none;
    color: inherit;
  }
  
  .projects-list-item-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  .projects-list-item-title {
    font-size: 1.5em;
    margin: 10px 0;
  }
  
  .projects-list-item-description {
    font-size: 1em;
    color: #666;
  }

  .experiences-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
  }
  
  .experiences-title {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .experiences-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    list-style-type: none;
    padding: 0;
    list-style: none;
  }
  
  .experience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    text-align: left;
    list-style: none;
  }
  
  .experience-item h3 {
    font-size: 1.5em;
    margin: 10px 0;
    list-style: none;
  }
  
  .experience-date {
    font-style: italic;
    color: #666;
    font-size: 1em;
  }
  
  .experience-description {
    margin-top: 5px;
    font-size: 1em;
    line-height: 1.5;
  }

  li {
    list-style-type: none;
  }

  .scroll-button {
    position: fixed;
    right: 20px;
    background-color: #333;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    z-index: 1000;
  }
  
  .scroll-up {
    bottom: 80px;
  }
  
  .scroll-down {
    bottom: 20px;
  }
  
  .scroll-button:hover {
    background-color: #555;
  }

  .custom-hr {
    border: 0;
    height: 1px;
    background: #333;
    margin: 20px 0;
  }