/* styles.oss */

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: red; 
    color: #fff;
    padding: 20px 0;
    text-align: center;
   
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

.cover-image {
    width: 400px;
    height: auto;
    border-radius: 8px;
}

.project-image {
	width: 5px;
	height:10px;
	border-radius: 8px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: white; 
}

h2 {
    color: #1565c0; 
    text-align: center;
    margin-top: 40px;
}

section {
    padding: 20px 0;
}

.project, .feature {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.project h2, .feature h3 {
    margin-top: 0;
    color: #1565c0; /* Same nice blue color */
}

.project p, .feature p {
    margin-bottom: 10px;
}

.project a, .button {
    color: #fff;
    background-color: #1565c0; /* Same nice blue color */
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.project a:hover, .button:hover {
    background-color: #0d47a1; /* Darker shade of blue on hover */
}

.feature img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1565c0; /* Same nice blue color */
    color: #fff;
    margin-top: 40px;
}

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