
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #C95015;
    color: #333;
}

header {
    background-color: #B03A00;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Drop shadow */
}
/*<uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 700
*/
h1{
	  font-family: "Lilita One", system-ui;
  font-weight: 400;
  font-style: normal;
text-align: center;

}
p{
font-family: "STIX Two Text", system-ui;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

nav ul {
 
    list-style: none;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	
}

nav ul li {
   padding: 5px;
    margin: 0 10px;
}

nav ul li a {
	 font-family: "Space Grotesk", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    color: #fff;
    text-decoration: none;
}

nav ul li a.active {
    text-decoration: none;
	color: #AEAEAE; 
	
	
}
ul li:hover {
 transform: scale(1.1);
transition: 0.3s;
  
}
form{
	font-family: "STIX Two Text", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.logo {
  font-family: "Lilita One", system-ui;
  font-weight: 400;
  font-style: normal;
}
.about-image {
    max-width: 300px;         /* Adjust the image width */
    border-radius: 20px;      /* Rounded corners */
    margin-top: 20px;         /* Add some space above the image */
    display: block;           /* Center the image */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for styling */
}

.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
}

.hero p {
    font-size: 20px;
}

.about {
	max-width: 700px;
	margin: auto;
    padding: 20px;
    text-align: center;
}

.portfolio .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio .gallery img {
    width: 200px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact form label {
	font-family: "STIX Two Text", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    margin: 10px 0 5px;
}

.contact form input, .contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form input[type="submit"] {
    width: auto;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

footer {
    background-color: #BA9A8A;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
