body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #e0c159;
    min-height: 100vh;
    flex-direction: column;
}

.container {
    text-align: center;
}

.container img {
    width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container h1 {
    font-size: 2em;
    margin: 20px 0;
    color: #333;
}

.container p {
    font-size: 1.2em;
    color: #555;
}

/* styling for button */

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

.project {
    margin-bottom: 40px;
}

.project img {
    width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project h1 {
    font-size: 2em;
    margin: 20px 0;
    color: #333;
}

.project p {
    font-size: 1.2em;
    color: #555;
}

.navbar {
    width: 100%;
    background-color: #333;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar a {
    display: block;
    color: white;
    text-align: center;
    padding: 15px 60px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #0056b3;
}
/*footer*/
.footer{
    width: 100%;
    height: 25px;
    background-color: #333;
    overflow: hidden;
    margin-top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    position: absolute;
}

/* Media queries */
@media (max-width: 600px) {
    .container img, .project img {
        width: 150px;
    }

    .container h1, .project h1 {
        font-size: 1.5em;
    }

    .container p, .project p {
        font-size: 1em;
    }

    .navbar a {
        padding: 10px 15px;
    }

    .button {
        padding: 8px 16px;
        font-size: 14px;
    }
}
