body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1e1e2d; /* Set background color for the whole page */
  color: #FFFFFF; /* Text color for the whole page */
}

.header {
  background-color: #1e1e2d;
  padding: 10px 0;
  text-align: center;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #676767;
  border-radius: 20px;
  padding: 10px;
  margin: 20px auto;
  width: fit-content; /* Ensures the menu width adjusts to content */
}

.menu button {
  background-color: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  margin: 0 10px;
}

.menu button:focus {
  outline: none; /* Removes the focus outline */
}

.content {
  padding: 20px;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  margin-bottom: 20px;
  background-color: #1e1e2d; /* Updated background color */
  color: #FFFFFF; /* Text color */
  padding: 20px; /* Padding for content */
  border-radius: 20px; /* Rounded corners */
}

.profile img {
  border-radius: 50%;
  width: 250px; /* Increase image width */
  height: 250px; /* Increase image height */
  object-fit: cover;
  margin-right: 20px;
}

.profile-info {
  max-width: 700px; /* Adjust as needed */
  text-align: left; /* Align text to the left */
}

.profile-info h1 {
  margin: 0; /* Remove margin */
  font-size: 35px; /* Increase text size */
}

.profile-info p {
  font-size: 20px; /* Increase text size */
}

@media only screen and (max-width: 768px) {
 .content {
   padding: 6px;
 }    
    
 .profile {
   display: flex;
   align-items: center;
   justify-content: center; /* Center horizontally */
   margin-bottom: 20px;
   background-color: #1e1e2d; /* Updated background color */
   color: #FFFFFF; /* Text color */
   padding: 5px; /* Padding for content */
   border-radius: 20px; /* Rounded corners */
 }      
    
  .profile img {
    border-radius: 50%;
    width: 120px; /* Increase image width */
    height: 120px; /* Increase image height */
    object-fit: cover;
    margin-right: 5px;
    margin-left: 1px;
  }

  .profile-info {
    max-width: 600px; /* Adjust as needed */
    text-align: left; /* Align text to the left */
  }
     
  .profile-info h1 {
    font-size: 25px; /* Adjust heading font size for smaller screens */
  }

  .profile-info p {
    font-size: 14px; /* Adjust paragraph font size for smaller screens */
  }
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 16px;
}

.buttons a {
  background-color: #7959FF; /* Background color for buttons */
  border-radius: 10px; /* Rounded corners for buttons */
  padding: 8px 16px; /* Padding for buttons */
  text-decoration: none;
  color: #FFFFFF;
  margin: 0 10px;
}

.buttons a:hover {
  background-color: #ddd; /* Hover color for buttons */
}

.buttons img {
  width: 20px;
  height: 20px;
  margin-right: 1px;
}

.projects-container {
  display: flex;
  flex-wrap: wrap; /* Allow projects to wrap to the next line */
  justify-content: center;
}

.project {
  width: 400px;
  height: 500px;
  background-color: #5E5E5E;
  border-radius: 20px;
  margin: 10px;
  padding: 20px;
}

.project img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}

.project-info {
  color: #FFFFFF; /* Set text color to black */
  margin-top: 10px;
}

.project-info h3 {
  font-size: 26px; /* Increase text size */
  margin: 0;
}

.project-info p {
  font-size: 20px; /* Increase text size */
  margin: 5px 0;
}

.project-info button {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.project-preview-link {
  text-decoration: none;
  color: #FFFFFF;
}

.preview-content {
  display: flex;
  align-items: center;
}

.preview-content img {
  width: 20px; /* Adjust image width as needed */
  height: auto; /* Maintain aspect ratio */
  margin-right: 5px;
}

.tag {
  display: inline-block;
  background-color: #374457;
  color: #FFFFFF;
  padding: 4px 8px;
  margin-right: 5px;
  border-radius: 5px; /* Rounded corners */
}