*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'times new roman', times, serif;
    color: white;
}
.navbar{
    height: 80px;
    width: 100%;
    /* background-color: #0077B6; */
    background-image: url(images/navbar.webp);
    background-size: cover;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar ul{
    list-style: none;
    display: flex;
    gap: 40px;
    font-size: 20px;
}
.navbar ul li a{
    text-decoration: none;
    color: white;
    transition: 0.3s;
}
.navbar ul li a:hover{
    color: rgb(255, 0, 0);
    transform: scale(1.1);
}
.projects{
    height: 100%;
    width: 100%;
    background-image: url(images/bg-projects.jpg);
    background-size: contain;
    opacity: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-top: 80px; */
}
.projects h1{
    text-align: center;
    padding-top: 20px;
    font-size: 35px;
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000000;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project{
    height: 500px;
    width: 1000px;
    background-color: rgba(0, 0, 0, 0.6);
    margin: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
project:hover{
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.project h2{
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}
.project p{
    font-size: 18px;
    line-height: 1.6;
    color: white;
    text-align: center;
    max-width: 800px;
}
.project a{
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0077B6; /* button color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.project a:hover{
    background-color: #005f8a; /* button hover color */
}

.end{
    height: 300px;
    background-image: url(images/navbar.webp);
    background-size: cover;
    opacity: 1;
    justify-content: center;
    display: flex;
    align-items: center;
}
.end div{
    text-align: center;
}