/* Reset default styling */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: Arial, sans-serif;
   color: #e0e0e0;
   background-color: #1e1e1e;
}

/* Navbar styling */
#navbar {
   background-color: rgb(40, 40, 40);
   padding: 10px;
}

#navbar ul {
   list-style-type: none;
   display: flex;
   justify-content: center;
}

#navbar ul li {
   margin: 0 15px;
}

#navbar ul li a {
   text-decoration: none;
   color: #e0e0e0;
   font-weight: bold;
   font-size: 1.1em;
   transition: color 0.3s ease;
}

#navbar ul li a:hover {
   color: #ffd369;
}

#navbar ul li#buy-coffee img {
   width: 18px; /* Adjust image size to make it small */
   height: 18px;
   margin-left: 8px; /* Space between text and image */
   transition: transform 0.3s ease;
   border-radius: 50px;
}

#navbar ul li#buy-coffee a:hover img {
   transform: scale(1.1);
}


/* Header styling */
header {
   text-align: center;
   padding-top: 40px;
   padding-bottom: 40px;
   background-color: #4a4a8a;
   color: #fff;
}

header h1 {
   font-size: 2.5em;
   margin-bottom: 10px;
}

header p {
   font-size: 1.2em;
}

/* Main section styling */
main {
   padding: 20px;
   text-align: center;
   background-color: #333;
   border-radius: 8px;
   margin: 1rem auto;
   max-width: 800px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Projects section styling */
#projects {
   margin: 20px 0;
}

#projects h2 {
   color: #ffd369;
   font-size: 1.8em;
   margin-bottom: 15px;
}

.project-item {
   background-color: #444;
   padding: 15px;
   border-radius: 8px;
   margin: 10px 0;
   text-align: left;
   color: #ddd;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.project-item h3 {
   font-size: 1.4em;
   color: #ffd369;
}

.project-item p {
   font-size: 1em;
   margin-top: 5px;
}

.project-item a {
   color: #ffd369;
   text-decoration: none;
}

.project-item a:hover {
   text-decoration: underline;
}

/* Skills section styling */
#skills {
   margin: 20px 0;
}

#skills h2 {
   color: #ffd369;
   font-size: 1.8em;
   margin-bottom: 15px;
}

.skills-container {
   display: flex;
   justify-content: center;
   gap: 20px;
   flex-wrap: wrap;
}

.skill {
   background-color: #555;
   padding: 10px 20px;
   border-radius: 8px;
   color: #e0e0e0;
   font-weight: bold;
   text-align: center;
   transition: background-color 0.3s ease;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.skill:hover {
   background-color: #ffd369;
   color: #1e1e1e;
}

/* Experience section styling */
#experience {
   margin: 20px 0;
}

#experience h2 {
   color: #ffd369;
   font-size: 1.8em;
   margin-bottom: 10px;
}

#experience p {
   color: #ddd;
   font-size: 1em;
   text-align: left;
}

/* Trademark styling */
.trademark {
   position: fixed;
   bottom: 10px;
   right: 10px;
   color: #e0e0e0;
   font-size: 0.8em;
   opacity: 0.6;
}

/* Responsive styling */
@media (max-width: 768px) {
   body {
       font-size: 0.9rem;
   }

   main {
       padding: 1rem;
       margin: 1rem 0.5rem;
   }

   .skills-container {
       flex-direction: column;
   }
}
