@import url('https://fonts.googleapis.com/css2?family=Sedan+SC&display=swap');

:root{
	--background-clr: #474747;
	--header-clr: #332f2e;
	--navbar-clr: #000000;
	--footer-clr: #0a4503;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Sedan SC", 'Times New Roman', Times, serif;
    font-size: 22px;
    line-height: 1.5;
    color: #333;
    background-color: var(--background-clr);
}

img {
    max-width: 100%;

}

h1, h2 {
    margin-bottom: 15px;
}

ul {
    list-style-type: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.navbar {
    background-color: var(--navbar-clr);
    color: #ffffff;
    height: 90px;
    flex: auto;
    overflow: hidden;
    position: fixed; /* Set the navbar to fixed position */
	top: 0; /* Position the navbar at the top of the page */
	width: 100%;

}

.navbar .logo {
    font-size: x-large;
    font-weight: bold;
}

.navbar .logo img {
	max-width: 75px;
	min-width: 75px;
    max-height: 75px;
    min-height: 75px;
    border-radius: 100px;
    box-shadow: 15px 10px 15px rgba(0, 0, 0, 1);
    margin-top: auto;
	margin-bottom: auto;
    
}
.navbar .title {
    font-size: x-large;
    font-weight: bold;
	margin-top: auto;
	margin-bottom: auto;
	padding: 0px 15px;
}


.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}


.navbar a:hover {
    color: lightblue;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: centre;
    height: 100%;
}

.navbar .nav {
    margin-left: auto;
    /* visibility:show; */
}

.footer {
    background: var(--footer-clr);
    color: #fff;
    height: 60px;
    font-family: "Times New Roman", Times, serif;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 10px;
}

.navbar ul {
    display: flex;
    margin-top: auto;
	margin-bottom: auto;
}

.hamburger {
    display: none;
    font-size: x-large;
}
.navbar ul li {
    margin-left: 20px;
}

.header {
    background-color: var(--header-clr);
    color: #fff;
    min-height: 175px;
    margin-top: 90px;
}

.header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
}

.header img {
    max-width: 275px;
    max-height: 275px;
    border-radius: 20px;
    box-shadow: 15px 10px 15px rgba(0, 0, 0, 1);
    margin: 5px 5px;

}


.header .container {
    display: flex;
    align-items: centre;
    justify-content: space-between;
}

.header a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}


.header a:hover {
    color: lightblue;
}

.boxes .container {
    display: flex;
    justify-content: space-between;
}

.box {
    flex: 1;
    background: #5e5656;
    color: #fff;
    border-radius: 10px;
    margin: 20px 10px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    
}

.box i {
    margin-right: 10px;
    
}

.gallary {
	margin: 20px 0px;

}

