* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: arial, sans-serif;
}
body {
    background-color: #f4f4f4;
    color: #333;
}
.navbar {
    background-color: #111;
    padding: 15px 0;
}
.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: transform 0.3s ease;
}
.nav-list li a:hover ::before {
   transform: translate(-3px);
}
.nav-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background-color: #A6A6A6;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.nav-list li a:hover::before {
    transform: scaleX(1);
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px 0;
    background: white;
    border-radius: 8px;
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.work-box {
    border: 2px dotted #000000;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    background: #fafafa;
}

h1{
     text-align: center;
    font-size: 50px;
    color: #333333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2)
}
p { 
    font-family: "Montserrat", sans-serif;
 }

h3 {
     text-align: center;
    font-size: 25px;
    color: #333333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2)
}
.center-project {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
}
.logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}