* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.projects-page {
    min-height: 100vh;
    padding: 80px 8%;
    background: #0f2027;
    color: white;
}

.page-title {
    text-align: center;
    font-size: 45px;
    margin-bottom: 60px;
}

/* PROJECT MEDIA ELEMENT KO ADJUST KRNE K LIYE */
.project-media img{
    width: 100%;
}
.project-media video{
    width: 100%;
}
.back-home {
    text-align: center;
    margin-top: 50px;
}

.back-home button {
    padding: 10px 25px;
    border: none;
    background: #00d9ff;
    color: black;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.back-home button:hover {
    background: white;
}
/* FOR PROPER ADJUSTMENT IN DIFFERENT DEVICES */
@media (max-width: 768px) {

    header {
        padding: 15px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;   /* Important */
        background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    }
    
    nav .contents {
        display: flex;
        flex-wrap: wrap;   /* Important */
        gap: 10px;
    }

    nav .elements {
        width: 100%;
    }

    .projects-page {
        padding: 40px 4%;
    }

    .page-title {
        font-size: 28px;
    }
}
