header {
        background-color: grey;
        color: white;
        box-shadow: 0 4px 6px rgba(red, green, blue, alpha0.1); 
        padding: 10px 0;
        text-align: center;
        text-decoration: none ;
}
    header h1{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: xx-large;
    font-style: italic;
    font-weight: 600px;
    text-align: center;
    color: #000;
    align-items: center;
    text-decoration: none;
}
nav{
        background-color: black;
        /* backgrouund color:black*/
text-align: center;
padding: 12px 0;
        }
        nav a{
            text-decoration: white;
            color: white;
            margin: 0 20px;
            font-weight: 600;
            font-size: 18px;
            letter-spacing: 0.5px;
        }
        nav a:hover{
            color: #ff6347;
            text-decoration: underline;
        }
.logoing{
background-color: #f5f5f5;
    width: 85px;
    height: 85px;
    display: block;
    border-radius: 50%;
}
body{color: #f5f5f5;
background-color: plum;
margin: 0;
padding: 0;
line-height: 1;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.collage{
    column-count: 2;
    column-gap: 10px;
    max-width: 700px;
    margin: auto;
}
.collage img{
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}
section{
            background-color: rgb(128, 128, 128);
            border-radius: 8px;
            margin: 30px auto;
            max-width: 1000px;
            box-shadow: 0 2px 10 px rgba(0,0,0, alpha0.1)
            padding: 24px;
            transition: box-shadow 0.3s ease;
        }
        section:hover{box-shadow: 0 6px 18px rgba(0,0,0, 0.15);
        }
        section h2{
            color: #0099ff;
             font-size: 28px;
             margin-bottom: 14px;
            }
            form{
                max-width: 650px;
                margin: 20px auto;
            }
             form label{
                margin-bottom: 8px;
                font-weight: 600px;
                display: block;
            }
            form input,form textarea,form button{
                width: 50%;
                padding: 14px;
                margin-bottom: 12px;
                font-size: 16px;
                border: 1px solid #ddd;
                border-radius: 8px;
            }
            form input:focus,form textarea:focus{
                border-color: #007bff;
                outline: none;
            }
            form button{
                background-color: #007bff;
                color: rgb(255, 255, 255);
                font-size: 18px;
                font-weight: 600px;
                border: 0cap;
                transition: background;
                cursor: pointer;
            }
                form button:hover{
                    background-color: #0056b3;
                }
                .photographer-photo{
                    width: 90px;
                    height: auto
                    displat;block ;
                    margin: 30px auto;
                    border-radius: 10px;
                    transition: cubic-bezier(0.075, 0.82, 0.165, 1);
                }
                .photographer-photo:hover{
                    transform: scale(1.1);
                    filter: brightness(70%);
                }


