* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    background-image: url(../images/TunisieTerre.gif);
    background-position: center;
    background-size: 33%;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
}

#map {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}


.map_image
{
	float: left;
	width: 24%;
    margin-right: 120px;
    animation: myAnim 1.5s ease 0s 1 normal forwards;
    backdrop-filter: blur(10px);
    border: 4px solid #1e8e47;
    border-radius: 16px;
    background: rgba(101, 101, 101, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.map_image path
{
	fill: #1e8e47;
	stroke: white;
	stroke-width:0.7px;
	transition: fill 0.3s;
}
.map_image .is-active path
{
	fill: #d6e231;
	stroke-width: 1.5;
    transform:translateY(-5px);
    transition: transform 0.5s ease;
}

.map_list {
    padding-top: 20px;
    padding-bottom: 20px;
    background: rgba(101, 101, 101, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 4px solid #1e8e47;
    width: 430px;
    animation: myAnim 1.5s ease 0s 1 normal forwards;
    margin-left: 60px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.77)), url("../images/DrapeauTunisie.gif");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: 50% 50%;
}

ul li {
    margin-top: 9.3px;
    margin-bottom: 9.3px;
}

.map_list a
{
    color: rgb(255, 255, 255);
	text-decoration: none;
	transition: color 0.4s, margin-left 0.3s ease-in, box-shadow 0.3s ease-in, background-color 0.3s ease-in;
    margin-left: 24px;
    font-size: 28px;
    border-radius: 5px;
    padding: 5px;


}

.map_list a.is-active
{
    background-color: white;
	color: red;
    font-weight: 600;
    margin-left: 40px;
    box-shadow: 0px 0px 5px 7px rgba(255, 21, 21, 0.75);
}

a
{
	cursor: pointer;
}

@keyframes myAnim {
	0% {
		opacity: 0;
		transform: scale(0.6);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
