html, body {
   background-image: url('images/mountain.webp');
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   margin-left: 50px;
   margin-right: 50px;
   max-width:100%;
}
#buttons{
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 16px;
   padding-top: 40px;
   margin-bottom: 40px;
}
#buttons button{
   font-family: "JetBrains Mono", monospace;
  font-weight: bold;
   color: black;
   background: rgb(84, 184, 238);
   border: none;
   border-radius: 10px;
   padding: 12px 20px;
   min-width: 150px;
   cursor: pointer;
   transition: background 0.2s ease, transform 0.2s ease;
}
#buttons button:hover{
   background: #245bd0;
   transform: translateY(-1px);
}
#buttons button:active{
   transform: translateY(0);
}
#profile-container {
   color: black;
   font-family: "JetBrains Mono", monospace;
   max-width: 800px;
   margin: 0 auto;
   padding-left: 0;
   padding-top: 70px;
   text-align: center;
   text-decoration: none;
   display: block;
   transition: all 0.3s ease;
}
#name {
   font-family: "Montserrat", sans-serif;
   font-size: 65px;
   font-weight: 700;
   font-style: italic;
}
#description {
   white-space: nowrap;
   font-size: 25px;
}

.typewriter h1 {
  overflow: hidden;
  border-right: .15em solid orange;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation:
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}
#about-me{
   color: black;
   font-family: "JetBrains Mono", monospace;
   text-align: left;

}
#about-me h2{
   font-size: 30px;
}
.list-container {
   position: relative;
   padding-left: 30px;
   border-left: 3px dashed black;
   max-width: 800px;
   margin: 100px auto;
   font-family: sans-serif;
   color: #fff;
}
.timeline-item {
  position: relative;
  margin-bottom: 50px; /* Spacing between sections */
}
.bullet {
   position: absolute;
   left: -41px; /* Centers the dot exactly over the border line */
   top: 5px;
   width: 20px;
   height: 20px;
   background-color: rgb(40, 98, 206);
   border-radius: 50%;
}
#skills{
   color: black;
   font-family: "JetBrains Mono", monospace;
   text-align: left;
}
#section-one p:not(#description){
   color: black;
   font-family: "JetBrains Mono", monospace;
   background: rgba(255, 255, 255, 0.05);
   border: 2px solid rgba(255, 255, 255, 0.1);
   border-radius: 12px;
   padding: 20px 25px;
   margin: 15px auto;
   max-width: 800px;
   text-align: left;
   text-decoration: none;
   display: block;
   transition: all 0.3s ease;
}

/* projects.html css */

.projects-container{
   padding: 20px;

}

.project{
   width: 30%;
   float: left;
   padding: 17px;
   justify-content: center;
   border-width: 2px;
   border-radius: 30px;
   border-color: #2f6fed;
   border-style: solid;
   box-sizing: border-box;
   margin: 0 1.5% 24px;

}
.project h2{
   font-family: "Montserrat", sans-serif;
   font-size: 20px;
   text-align: center;
}
.project p{
   text-align: center;
   font-family: "JetBrains Mono", monospace;
}
.buttons{
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 16px;
}

.buttons button{
   font-family: "JetBrains Mono", monospace;
   font-weight: bold;
   color: white;
   background: #2f6fed;
   border: none;
   border-radius: 10px;
   padding: 10px 16px;
   min-width: 140px;
   cursor: pointer;
   transition: background 0.2s ease, transform 0.2s ease;

}
.buttons button:hover{
   background: #245bd0;
   transform: translateY(-1px);
}
.buttons .github-button:hover{
   background: #245bd0;
   transform: translateY(-1px);
   background-image: url('images/githubblue.png');
   background-position: center;
   background-size: 22px 22px;
   background-repeat: no-repeat;
   color: transparent;
   text-shadow: none;
}
.buttons button:active{
   transform: translateY(0);
}
.buttons .github-button{
   background-color: #2f6fed;
   background-image: url('images/githubblue.png');
   background-size: 22px 22px;
   background-position: 14px center;
   background-repeat: no-repeat;
   padding-left: 44px;
   color: white;
   text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}
#message{
   clear: both;
   width: 100%;
   padding: 100px 20px 0;
   font-family: "JetBrains Mono", monospace;
   text-align: center;
   margin: 0 auto;
   line-height: 1.5;

}
/* Css of contacts.html */
#links{
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 14px;
   max-width: 560px;
   margin: 80px auto 0;
   padding: 32px 24px;
   border: 2px solid rgba(47, 111, 237, 0.45);
   border-radius: 24px;
   background: rgba(255, 255, 255, 0.12);
}

#links h2{
   margin: 0 0 6px;
   font-family: "Montserrat", sans-serif;
   font-size: 32px;
   color: black;
   text-align: center;
}

#links button{
   font-family: "JetBrains Mono", monospace;
   font-weight: bold;
   min-width: 220px;
   padding: 12px 22px;
   border-radius: 12px;
   color: white;
   background: #2f6fed;
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
   box-shadow: 0 6px 16px rgba(47, 111, 237, 0.25);
}

#links button:hover{
   background: #245bd0;
   transform: translateY(-2px);
   box-shadow: 0 10px 22px rgba(47, 111, 237, 0.35);

}

#links button:active{
   transform: translateY(0);
}
#links .github-button:hover{
   background-color: #2f6fed;
   background-image: url('images/githubblue.png');
   background-size: 22px 22px;
   background-position: center;
   background-repeat: no-repeat;
   padding-left: 44px;
   color: transparent;
   text-shadow: none;
}
#links #LinkedIn:hover {
   background-color: #2f6fed;
   background-image: url('images/linkedin.png');
   background-size: 22px 22px;
   background-position: center;
   background-repeat: no-repeat;
   padding-left: 44px;
   color: transparent;
   text-shadow: none;
}
#links #Instagram:hover {
   background-color: #2f6fed;
   background-image: url('images/instagram.png');
   background-size: 22px 22px;
   background-position: center;
   background-repeat: no-repeat;
   padding-left: 44px;
   color: transparent;
   text-shadow: none;
}
#links #Twitter:hover {
   background-color: #2f6fed;
   background-image: url('images/twitter.png');
   background-size: 22px 22px;
   background-position: center;
   background-repeat: no-repeat;
   padding-left: 44px;
   color: transparent;
   text-shadow: none;
}
