*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;
     background-color:black;
     cursor: pointer; 

}
 nav{
    background-color: black;
    padding:20px;

} 
ul{
    display:flex;
  justify-content: space-evenly; 
  align-items: center;
}
a{
    text-decoration: none;
}
li{
    color:white;
    list-style-type:none;
    font-size: 17px;
}
li:hover{
    color:aqua
}

.btn{
    color:white;
}


body {
    font-family: Arial, sans-serif;
    background-color: #292727;
    color: #333;
    line-height: 25.6px;
    margin: 0;
    padding: 0;
}

header {
    
    color: #fff;
    padding: 16px 0;
    text-align: center;
}

header h1 {
    margin: 15px;
    font-size: 40px;
}

header p {
    font-size: 16px;
    margin-top: 8px;
}

.container {
    max-width: 1200px;
    margin: 32px auto;
    padding: 0 16px;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.project {
    background: #1d1c1c;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}

.project:hover {
    transform: scale(1.05);
}

.project img {
    width:370px;
    height:290px;
}

.project-content {
    padding: 16px;
}

.project-content h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color:white;
    text-align:center;
}

.project-content p {
    margin: 0 0 16px;
    font-size: 16px;
    color: #b9b5b5;
    

}

.project-content a {
    margin-left:120px;
    text-decoration: none;
    color: aqua;
    font-weight: bold;
    
}

.project-content a:hover {
    text-decoration: underline;
}

hr{
    color:white;
    height:5px;
    background-color: white;
}
