body{
    margin: 0;
    direction: rtl;
    background-image: url("../Images/mont.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

h1,h4{
    text-align: center;
    color: purple;
}

nav{
display: grid;
grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
background-color: white;
width: 100%;
padding: 10px;
}

nav a{
    color: black;
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s;
}

nav a:hover{
    color: orange;
    text-decoration: underline;
    transition: 0.4s;
}

p,li{
    color: white;
    text-shadow: 1px 1px 5px white;
}

#contactUs{
    margin: auto;
    text-align: center;
    background-color: rgba(128, 0, 128, 0.384);
    width: 50%;
    padding: 10px 20px;
    border-radius: 20px;
}

#contactUs input,textarea{
    border: 1.5px solid purple;
    border-radius: 5px;
    outline: none;
}

iframe{
    width: 300px;
    margin: auto;
    height: 300px;
    border-radius: 20px;
    
}

#login{
    text-align: center;
    background-color: rgba(128, 0, 128, 0.354);
    width: 50%;
    margin: auto;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid purple;
}

#login input,textarea{
    border: 1.5px solid purple;
    border-radius: 5px;
    outline: none;
}

input[type="submit"]:hover,input[type="button"]:hover{
    cursor: pointer;
    background-color: purple;
    color: white;
    transition: 0.2s;
}

#gallery{
    display: grid;
    grid-template-columns: 50% 50%;
}
#gallery img{
    height: 400px;
    width: 100%;
}
#gallery img:hover{
   opacity: 0.85;
   border: 2px solid purple;
   cursor: pointer;
}

.tefasim{
    text-align: center;
}
td,th{
    border: 2px solid purple;
    padding: 4px;
}

