@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,*::before,*::after {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #4f6f80; /* background color */
    padding: 1rem 2rem;
    color: white;
  }
  
  .nav-title {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav-menu li a:hover {
    text-decoration: underline;
  }
  

  body {
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.about-wrapper { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    width: 100%; 
    padding: 50px;
}
.container {
    flex: 2; 
    padding: 20px;
    background-color: #4f6f80;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: 20px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.image {
    flex: 1; 
    padding: 20px;
    text-align: center;
}
.image img {
    width: 100%;
    max-width: 500px;
    border-radius: 3%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.description {
    flex: 2;
    padding: 20px;
}
.description h1 {
    font-size: 2rem;
    color: #fff;
}
.description p {
    font-size: 1rem;
    color: #ffffffb9;
    line-height: 1.6;
}
#Projects {
    font-size: clamp(60px, 10vw, 72px);
    color: #4f6f80;
    text-transform: uppercase;
    margin: 0;
}


.footer {
    background-color: #222;
    color: #f1f1f1;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .footer-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  
  .footer-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .socials a {
    margin: 0 10px;
    color: #f1f1f1;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .socials a:hover {
    color: #1da1f2; /* light blue highlight */
  }
  
  .footer-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
  }
  