*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    all:unset;
}
.heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000e1;
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 70px;
}
.heading .logo{
    margin: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    margin: 50px;

}
ul li{
    list-style: none;
    color: #fff;
}

.heading .links{
    display: flex;
    gap: 30px;
}

.links a{
    cursor: pointer;
    margin: 0 10px;
    transition: 0.3s;
    width: 20px;
    font-size: 20px;
    padding: 8px 15px;
}
.links a:hover{
    color: #000;
    background-color: #fff;
    border-radius: 5px;
}
/*====================content===================================================== */
.content{
    background: url(../assets/Best-Camera-backgrounds-hd-download.jpg) no-repeat;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.content.main-text{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
/* .content::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0,0.4);
} */
.title{
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    text-decoration: bold;
}
.title::selection{
    background-color: #aa4e4e;
}
.title span{
    color:#aa4e4e;
}
.btn{
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
button{
    margin-top  : 30px;
    font-size: 30px;
    border-radius: 25px;
    padding: 10px;
    transition: .3s;
}
button:hover{
    background-color:#aa4e4e ;
    transform: scale(1.2);
    
}
/* ======================================== */
footer.footer {
    padding: 0 10%;
    background-color: #aa4e4e ;
    color: #fff;
    width: 100%;
}

footer p {
    text-align: center;
    padding: 30px 0;
}