@font-face {
    font-family: 'CustomFont';
    src: url('MakDah.ttf') format('TrueType'); /* Font format */
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Arial, sans-serif;
	background-color: #A1B8CA;
	background-image: linear-gradient(#A1B8CA, #fff);
    margin: 0;
	padding: 0% 9%;
}

header {

    color: #fff;
    padding: 5px;
    text-align: center;
	font-size: 30px;
	font-family: 'CustomFont', Arial, sans-serif;
}

h1 {

	font-family: 'CustomFont', Arial, sans-serif;
	margin: 0;
}

p {
	text-indent: 20px;
}

nav {
    text-align: center; /* Center the menu items */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0px 20px;
}

nav ul li a {
	color: #fff;
    text-decoration: none;
}

section {
    margin: auto;
	max-width:500px;
}

#s1 {

	background-color: #fff;
	opacity: 0.9;
	padding: 15px;
	padding-bottom: 5px;
	margin: 12px 0px;

}

#s2 {
	background-color: #eef7ff;
	padding: 15px;
	margin: 9px 0px;
}

.dropdown {
    display: none;
    position: fixed;
    top: 0px;
    right: -6%;
}

.dropbtn {
    color: white;
    padding: 0px;
    text-decoration: none;
}

.dropbtn img {
    width: 21vw;
    height: auto;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	right: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}
table{
	width:100%;
}
table, td {
	padding:3px;
	border: 1px solid #f1f1f1;
	border-collapse: collapse;
}
table, th {
	padding:6px;
	border: 1px solid #f1f1f1;
	border-collapse: collapse;
}
th {
		font-size: 21px;
	font-family: 'CustomFont', Arial, sans-serif;
}
table tr:hover {
    background-color: #f1f1f1;
}
table th:hover {
    background-color: #fff;
}

.image-container {
    overflow: hidden;
    display: flex;
    justify-content: center; /* Horizontally center the images */
    align-items: center; /* Vertically center the images */
}

.image-container img {
    width: 50%;
    height: auto;
    margin-bottom: 20px;
}

footer {
	font-size: 13px;
    color: #000;
    text-align: center;
    width: 100%;
	
}

footer address {
	font-size: 24px;
    font-style: normal; /* Override the default italic style */
	padding: 0px 9%;
}

footer a {
	color: #000;
    text-decoration: underline;
    margin-bottom:12px;
}

#facebook {
	margin-bottom:12px;
}



		

@media only screen and (max-width: 600px) {
	header {
		text-align: left;
		font-size: 5vw;
	}
	
	body {
		padding: 3%;
	}
	
    nav ul li:not(.dropdown) {
        display: none;
    }

    nav ul li.dropdown {
        display: block;
		font-family: initial;
		z-index:1000;
    }

    .dropdown {
        display: inline-block;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
	
	#fs {
	display:block;
	
}

}