body{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.background-landings{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
*{
    direction: rtl;
}

.landing_page{
    width: 100%;
    height: calc(120vh - 20px);
    top: 0px;
    position: relative;
    
    
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    
    /*background-image: url(https://lh3.googleusercontent.com/pw/AJFCJaWQmjY0JvIdvtKQ6wdCcgCibzu07hUNiX56O4Rw8kbGYvT9HyFQKv-5Ob5fAXbcybXnfukzlAs5SnZdhQ3DQYogehbFc9x41wSIcuMnEiqfQL9UTcf1jLlIRvSSclSYpnEO640aejGLL56UFvO0zKa6mg=w1485-h990-s-no?authuser=0); 
    */
    background-image: url(https://lh3.googleusercontent.com/pw/AIL4fc-6YUmmA_L9hq63NFD3aPo4kpwLEsZuFkdwTJuXBrBqvpUSzo577y_f_sZdUlQ_kiWPrsykKsILXKBd9xL8-DqQYccQeDasyV_a5y86TZfdFdCCjbIG7QSkW5v1vTbZWZequ-LJKOSmsQM6QbdYUExh_w=w1474-h983-s-no?authuser=0);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.landing_page .content{
    margin-left: 50px;
}

.landing_page .content h1{
    font-size: 80px;
    color: #fff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.landing_page .content h3{

    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    padding: 0px 2px;
    color: #fff;
    font-size: 40px;
}
.landing_page .content a{
    text-decoration: none;
}
.landing_page .content button{

    border-radius: 10px;
    width: 170px;
    height: 60px;
    border: solid 2px #000;
    background-color: #fff;
    margin-left: 20px;
    font-size: 25px;
}
.landing_page .content a:nth-child(even) button{
    background-color: #000;
    color: #fff;
    border: solid 2px #fff;
}

@media (min-width:850px) {
    .landing_page .content{
        margin-left: 200px;
    }
}
@media (max-width:850px) {
    .landing_page .content{
        margin-right: 10px;
        text-align: center;
    }
}


@media (max-width:600px) {

    .landing_page .content button{
    
        width: 45%;
        margin-left: 0px;
    }
    .landing_page .content{
        margin: 0px;
    }
    .landing_page .content h1{
        font-size: 60px;
    }
    .landing_page .content h3{
    font-size: 30px;
    }
}
