/* General styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #2c455b;
  color: #fff;
}

.container {
  width: 80%;
  margin: 0 auto;
}

   header ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            margin-left: 10px;
            display: flex;
            align-items: center; /* Profil resmi ve yazıları dikeyde ortala */
            display: flex;
            flex-wrap: wrap; /* Seçenekler sığmazsa alt satıra geç */
        }

        header li {
            margin-right: 20px;
            list-style-position: inside; /* <li> elemanları içeriye hizalansın */
        }

        header a {
            text-decoration: none;
            color:white;
            font-weight: bold;
            display: inline-block;
            padding: 10px 20px;
            border: 1px solid transparent; /* Şeffaf iç sınır */
            border-radius: 5px;
            transition: border-color 0.3s ease; /* Sınır rengi geçiş efekti */
        }

        header a:hover {
            border-color: green; /* Fare üzerine gelince sınır rengini değiştir */
        }

        header img {
            width: 100px; /* Profil resmi genişliği */
            height: 100px; /* Profil resmi yüksekliği */
            border-radius: 50%; /* Profil resmi yuvarlak yapma */
            margin-right: 10px;
        }
		header {
   
    color: #fff; /* Başlık metin rengi */
    padding: 5px;
    text-align: center;
  
}
.color-picker {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
}

.options {
    display: flex;
}

.option {
    margin-right: 10px;
}

/* Section styles */
section {
  padding: 40px;
  margin: 40px 0;
  background-color: #8399ae;
  border-radius: 10px;
}

section h2 {
  font-size: 1.5em;
  margin: 0 0 20px 0;
}

section p {
  line-height: 1.5;
}

/* About section styles */
#about {
  display: flex;
  align-items: center;
}

#about img {
  width: 300px;
  margin-right: 40px;
}

/* Skills section styles */
#skills {
  text-align: center;
}

#skills .skill-card {
  display: inline-block;
  width: 150px;
  height: 150px;
  margin: 20px;
  background-color: #2e2e2e;
  border-radius: 50%;
  text-align: center;
  line-height: 150px;
  font-size: 2em;
  transition: all 0.3s ease;
}

#skills .skill-card:hover {
  background-color: #4CAF50;
}

/* Projects section styles */
#projects {
  text-align: center;
}

#projects .project-description {
  background-color: none;
  padding: 20px;
  border: 1px solid #ff02f2;
  border-radius: 5px;
}

#projects .project-description h3 {
  font-family: sans-serif; /* Replace with the actual font name */
  color: aqua; /* Replace with the actual color code */
}

/* Code art styles */
.code-art {
  font-family: 'Consolas', monospace;
  font-size: 16px;
  line-height: 20px;
  background-color: #121212;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative; /* For positioning the animation */
}

.code-art h1,
.code-art h2 {
  margin: 0 0 10px 0;
}

.code-art ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.code-art li {
  margin-bottom: 5px;
  overflow: hidden; /* Hide the text until it is typed out */
  border-right: 1px solid #fff; /* Add a blinking cursor */
  white-space: nowrap; /* Prevent text from wrapping */
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* Animation styles */
.code-art li:nth-child(1) { /* First line */
  animation-delay: 0s;
  color:orange;
}

.code-art li:nth-child(2) { /* Second line */
  animation-delay: 1s;
  color:blue;
}

.code-art li:nth-child(3) { /* Third line */
  animation-delay: 2s;
  color:yellow;
}
.code-art li:nth-child(4) { /* Fourth line */
  animation-delay: 3s;
  color:green;
}
.code-art li:nth-child(5) { /* Fifth line */
  animation-delay: 4s;
  color:aqua;
}
.code-art li:nth-child(6) { /* Sixth line */
  animation-delay: 5s;
  color:red;
}
/* ... and so on for other lines ... */

@keyframes typing {
  from { width: 0; } /* Start with zero width */
  to { width: 10; } /* Expand to full width */
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  0% { border-color: #fff; }
}

/* Footer styles */
footer {
  background-color: #121212;
  color: #fff;
  padding: 20px;
  text-align: center;
}
  /* Container for the slider */
        .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        /* Slider */
        .slider {
            display: flex;
            transition: transform 0.5s ease; /* Transition for smooth sliding */
        }

        /* Individual slide */
        .slide {
            flex: 0 0 100%;
			
            /* For responsive design, adjust width accordingly */
        }

        /* Button styles */
        .slider-btn {
  z-index: 2;
 
  top: 50%;
 
			transform: translateY(-50%);
            position: absolute;
           
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            cursor: pointer;
            color: white;
            font-size: 24px;
            transition: background-color 0.3s ease;
        }

        .slider-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }
 .dots__container {
            text-align: center;
            margin-top: 10px;
        }

        .slider-dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            margin: 0 5px;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active-dot {
            background-color: #717171;
        }
