body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    
}

h1 { 
    text-align: center;
    margin-top: 20px;
   color: rgb(0, 166, 255);
    font-weight: 900;
 
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 30px;
    padding: 20px;
    margin: 90px auto;
    max-width: 1200px; 
}

.project-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 24px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: auto;
}

.project-info {
    padding: 15px;
}

.project-info h2 {
    margin-top: 0;
    color: rgb(5, 152, 231);
}

.project-info p {
    margin-bottom: 10px;
    font-weight: 600;
}

.project-info button {
    padding: 5px 10px;
    background-color: #012244;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.project-info button:hover {
    background-color: #036a96;
}


.html-icon {
    color: #e34c26; 
}

.css-icon {
    color: #eb0095; 
}
.copyright-footer {
    text-align: center;
    background-color: #5bbff9; /* Choose your preferred color */
    color: #000000; /* Text color */
    padding: 10px;
    position: fixed;
    bottom: 0;
    font-weight: 600;
    width: 100%;
}