/* Reset default styling */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: Arial, sans-serif;
   color: #e0e0e0; /* Light gray text for readability */
   background-color: #1e1e1e; /* Dark background */
}

/* Navbar styling */
#navbar {
   background-color: rgb(40, 40, 40); /* Darker color for navbar */
   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; /* Light gray for navbar links */
   font-weight: bold;
   font-size: 1.1em;
   transition: color 0.3s ease;
}

#navbar ul li a:hover {
   color: #ffd369; /* Hover color */
}

#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; /* Header background color */
   color: #fff; /* White text for header */
}

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: #333333; /* Darker background for main section */
   border-radius: 8px;
   margin: 1rem auto;
   max-width: 800px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Project section styling */
.projects {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: center;
   padding: 20px;
}

.project {
   background-color: #282828; /* Dark background for each project box */
   border-radius: 8px;
   width: calc(50% - 20px); /* Two columns layout */
   padding: 20px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   text-align: center;
}

.project img {
   width: 60px;
   height: 60px;
   margin-bottom: 10px;
   transition: transform 0.3s ease;
}

.project img:hover {
   transform: scale(1.1);
}

.project p {
   font-size: 1em;
   color: #e0e0e0;
}

/* Responsive styling */
@media (max-width: 768px) {
   body {
       font-size: 0.9rem;
   }

   main {
       padding: 1rem;
       margin: 1rem 0.5rem;
   }

   .project {
       width: 100%; /* Full width for small screens */
   }
}
/* Trademark styling */
.trademark {
   position: fixed;
   bottom: 10px;
   right: 10px;
   color: #e0e0e0;
   font-size: 0.8em;
   opacity: 0.6;
}