@charset "utf-8";
/* CSS Document */

/* Reset some default browser styles */
html, body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Set a background color and default font family */
body {
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

/* Style the header section */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 40px;
	
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
	color: white;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
a:link {
	text-decoration: none;
	color: black;
}

a:visited {
	text-decoration: none;
	color:  black;
}

#logo {
  width: 350px;
  height: 250px;
  border-radius: 50%;
  moz-border-radius: 80px / 40px;
  webkit-border-radius: 80px / 40px;
           
}
/* Style the hero section */
.hero {
    background-image: url('books.jpg');
	background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
    color: #fff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5733;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Style the books section */
.books {
	background-image: url('');
    padding: 40px 0;
}

.books h2 {
    font-size: 24px;
    margin-bottom: 20px;
	margin-right: 20px;
	padding: 40px 40px 40px 40px;
}

.book {
    background-color: #fff;
	text-decoration: none;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.book img {
    max-width: 100%;
    height: auto;
}

.book h3 {
    font-size: 18px;
    margin: 10px 0;
}

.book p {
    font-size: 16px;
    margin-bottom: 10px;
}

.container img {
	padding: 20px;
}

/* Style the about and contact sections (similar to books section) */
/* CSS for the About Us section */

/* Apply styles to the About Us section with id="about-us" */
.about {
	background-image: url(glasses.jpg);
	background-size: cover;
    background-position: center;
    background-color: #F7F7F7; /* Background color for the section */
    padding: 40px; /* Add padding to create space around the content */
}

/* Apply styles to elements within the About Us section */
.about h1 {
    font-size: 28px; /* Font size for the main heading */
    color: black; /* Text color for the main heading */
}

.about h2 {
    font-size: 24px; /* Font size for subheadings */
    color: black; /* Text color for subheadings */
}

.about p {
    font-size: 16px; /* Font size for paragraphs */
    line-height: 1.5; /* Line height for readability */
    color: black; /* Text color for paragraphs */
	
}

.about ul {
    list-style-type: disc; /* Use disc bullets for unordered lists */
    margin-left: 20px; /* Add left margin for the list */
}

.about li {
    font-size: 16px; /* Font size for list items */
    line-height: 1.5; /* Line height for list items */
    color: black; /* Text color for list items */
	text-indent: 10px;
}

.about img {
    max-width: 100%; /* Ensure the image does not exceed its container width */
    height: auto; /* Maintain the aspect ratio of the image */
    display: block; /* Center the image horizontally */
    margin: 20px auto; /* Add margin to center the image vertically */
	opacity: 0.5;
}

div.transbox {
  margin: 30px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
	padding: 5px;
}

 .contact-form {
            width: 400px;
            margin: 50px auto;
            padding: 20px;
            border: 1px solid #e0e0e0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .contact-form label,
.contact-form input[type="text"] {
			width: 80%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #e0e0e0;}

        .contact-form input[type="email"],
        .contact-form textarea {
            width: 80%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #e0e0e0;
        }

        .contact-form input[type="checkbox"] {
            margin-right: 5px;
        }

        .contact-form button {
            padding: 10px 15px;
            background-color: #007BFF;
            color: #fff;
            border: none;
            cursor: pointer;
        }

        .contact-form button:hover {
            background-color: #0056b3;
        }

/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    font-size: 14px;
}