body{
    margin: 0;
    padding: 0;
}



/* Header */

header #head1{
    background-color: white;
    position: static;
    width: 100%;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

header img{
    height: 100px;
    width: 100px;
    /* padding-top: 100px; */
    margin: 30px;
}
header h1{
    font-family: 'El Messiri';
}

/* Main */
main{
    position: relative;
    /* top: 80px;    */
}

    /* Banner */
    #banner{
        background-image: url(./images/Banner.webp);
        background-position: center;
        background-size: cover;
        height: 600px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #banner h1{
        background-color: rgba(255, 255, 255, 0.698);
        font-family: 'El Messiri';
        width: 100%;
        text-align: center;
        font-size: 50px;
    }


    /* crimes */

    #crimes{
        height: 600px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: black;
    }

    #crimes h2{
        font-family: 'El Messiri';
        font-size: 50px;
    }

    .crimes_container{
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        

    }

    .item{
        width: 200px;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        background-color: white;
        transition: background-color 2s;
    }

    .item:hover{
        background-color: red;
        transition: all 2s;
    }

    .item h3,h4{
        font-family: 'El Messiri';
        font-size: 25px;
        color: black;
        transition: color 1s;
    }



    .item img{
        width: 50px;
        height: 50px;   
    }

    .item img:hover{
        width: 60px;
        height: 60px;
        box-shadow: 3px 3px 10px rgb(162, 0, 0) inset;
    }


/* Important Links Section */
    #grid{
        width: 100%;
        height: 500px;
        display: grid;
        grid-template: 1fr 1fr / 1.5fr 1fr 1fr 1fr;
        gap: 20px;
        background-color: rgb(255, 255, 255);
        margin: 30px  0;
    }

    #flag{
        grid-area: 1/1/3/2;
        background-image: url(./images/istandwith.jpg);
        background-position: center;
        background-size: cover;
        box-shadow: 15px 15px 20px rgb(184, 184, 184);
        border-radius: 20px;
        
    }

    #ez img{
        width: 100px;
        height: 100px;
    } 
    #bednash img{
        width: 200px;
        height: 200px;
    }

    #ez{
        grid-row: 1/2;
        grid-column: 2/6;
        /* background-color: greenyellow; */
        border-radius: 60px;
        border: 5px solid;
        border-color: rgb(115, 255, 0);
        box-shadow: 10px 10px 20px rgba(130, 243, 10, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #ez h2{
        font-family: 'El Messiri';
        font-size: 40px;
    }

    #bednash{
        grid-area: 2/2/3/6;
        /* background-color: greenyellow; */
        border-radius: 60px;
        border: 5px solid;
        border-color: rgb(115, 255, 0);
        box-shadow: 10px 10px 20px rgba(130, 243, 10, 0.7);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #hbednash {
        padding: 0;
        margin: 0;
    }


/* Footer */
footer{
    position: relative;
    top: 50px;
    background-color: white;
    color: black;
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
}


.button a{
    padding-top: 10px;
    text-decoration: none;
    background-color: black;
    margin: 10px;
    padding: 10px;
    border-radius: 50%;
}

.button a i{
    font-size: 1.5em;
    color: white;
    opacity: 0.9;
}

/* hover effect on social media icon*/



.icon {
    margin: auto;
    display: inline;
    position: relative;
    top: -30px;
    left: 40px;
}




/* .pp {
    /* border-style: solid;
    border-width: 10px;
    border-radius: 50%;
    text-decoration: underline;
    font-size: 20px;
    font-style: italic;
    display: flex;
    justify-content: center;
    padding: 20px;
 } */