﻿* {
    padding: 0;
    margin: 0;
    direction: rtl;
    margin: 0;
}

.all {
    width: 100%;
    height: auto;
    background-image: url('/img/opa5.png');
    background-repeat: no-repeat;
    background-size: 125%;
    background-position-y: 100vh;
    background-color: white;
    display: grid;
}

.hdr {
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, transparent, #95c1eb33 );
    padding:0 5px;
    border-radius:12px;
}

.text {
    width: 90%;
    text-align: center;
    border-radius: 8px;
    font-family: Arial,sans-serif;
    background: #bcb498;
    margin: 10px auto;
    padding: 20px;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    border: 2px solid #000;
}
p {
    font-size:18px;
    padding:10px;
    text-align:center;
    justify-content:center;
    font-weight:600;
}

h1 {
    border-radius: 8px;
    width: 10%;
    margin: 5px 10px;
    padding: 10px;
    font-weight: 700;
    font-size: 28px;
}
.img {
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: box-shadow 0.3s ease,transform 0.3s ease;
    width: 97%;
    animation: bl 1.5s ease-in-out;
    opacity: 1;
    margin: 100px  100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:auto;    
    border-radius: 13px;
    transform: scale(1);
    margin-top:130px;
}
    .img:hover{
        box-shadow:0 12px 24px rgba(0,0,0,0.5);
        transform:scale(1.05);

    }
  