body {
    background-color: #333;
    /* font-family: Poppins, sans-serif; */
    font-family: 'Red Hat Display', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f5f5f5f1;
    color: #333;
    padding: 15px 15px;
    text-align: center;
}

header h1 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 300;
    margin: 0;
    font-size: 3rem;
}

header h2 {
    /* font-family: Raleway; */
    font-weight: 500;
    margin-top: 10px;
    font-size: 2rem;
}

#projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.project {
    margin: 15px;
    text-align: center;
}

.project img {
    width: 100%; /* Adjust based on preference */
    max-width: 50vw;
    height: auto;
    border: 1px solid #ddd; /* Optional: adds a slight border around the images */
    border-radius: 4px; /* Optional: rounds the corners of the images */
    padding: 5px;
}

.project p {
    margin-top: 5px;
    /* color: #333; */
    text-decoration: none;
}
a{
    text-decoration: none;
    color: inherit;
    transition: color 0.8s ease; /* Smooth transition for color change */
}

a:hover {
    color: rgb(255, 240, 156);
    text-decoration: underline;
}