

body{
    margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px
}
.container{
    
    height: 1500px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 10fr 1fr;
    grid-template-rows: 1fr 5fr 1fr 11fr 1fr;  
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.navbar{
    display: flex;
   
    grid-area: 1/1/2/4;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5); 
    justify-content: center; 
    padding: 10px 20px; 

}
.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    &:hover {
        color: red; 
    }
}

.navbar li {
    margin: 0 10px;
}

.petrahero{
   
    background-image: url('perta_hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
    
    grid-area: 1/1/4/4;
   
}

main{
   height: 1000px;
    border: 1px solid #000; 
    padding: 5px; 
    background-color: rgb(197, 196, 196);
    z-index: 10;
    grid-area: 3/2/5/3;
     display: grid;
     grid-template-rows: repeat(6,1fr);
     grid-template-columns: 1fr 1fr 1fr;
     border: 1px solid #000; 
   
}

.item1{
    grid-area: 1/1/3/2;
    background-color: red;
    margin: .4em;
    background-image: url('Wadi-Rum.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
.item2{
    grid-area: 1/2/3/3;
    background-color: red;
    margin: .4em ;
    background-image: url('jerash.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.item3{
    grid-area: 1/3/3/4;
    background-color: red;
    margin: .4em ;
    background-image: url('amman.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.item7{
    background-color:#67B4D3;
    margin: .4em ;
    grid-area: 3/1/5/4;
 
}
.item7 h3{
    text-align: center;
}
.item7 p{
padding: 1em;
}

.item8{
    background-color: red;
    margin: .4em ;
grid-area: 5/1/7/2;
background-image: url('4.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.item9{
    background-color: red;
    margin: .4em ;
    grid-area: 5/2/7/3;
    background-image: url('5.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.item10{
    background-color: red;
    margin: .4em ;
    grid-area:5/3/7/4 ;
    background-image: url('1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
footer{
    border: 1px solid #000; 
    text-align: center;
    font-size: .70rem;
    background-color:#67B4D3;
    grid-area: 5/1/5/4;
   bottom: 0;
}
