* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdfd61;
    color: #000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000;
    padding: 15px 30px;
    background-color: #fdfd61;
}

.logo {
    font-weight: bold;
    font-size: 26px;
}

.back-btn {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    border: 2px solid #000;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.back-btn:hover {
    background-color: #000;
    color: #fdfd61;
}

.project-detail {
    padding: 40px 30px;
    text-align: center;
}

.project-detail h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.project-image {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
