body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    max-width: 1200px; /* Limit the maximum width */
    margin: auto;
    overflow: hidden;
}

header {
    background: #35424a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #e3e3e3; /* Add a bottom border for a distinct separation */
}

nav {
    margin: 20px 0;
}

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

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

nav ul li a {
    text-decoration: none;
    color: #35424a;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

nav ul li a:hover {
    color: #e3e3e3; /* Change color on hover for better visibility */
}

section {
    background: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    color: #35424a;
    border-bottom: 2px solid #e3e3e3; /* Add a bottom border to headings */
    padding-bottom: 10px;
}

ol {
    margin: 10px 0;
    padding-left: 20px;
}

.screenshot {
    max-width: 90%; /* Limit width to 90% of the parent container */
    height: auto;
    margin: 15px auto; /* Center align and add margin above and below */
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a slight shadow for depth */
    transition: transform 0.3s; /* Smooth transition for scaling effect */
    display: block; /* Ensure it's a block-level element for centering */
}

.screenshot-container {
    display: flex; /* Use flexbox layout */
    justify-content: space-around; /* Space between images */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}




.screenshot:hover {
    transform: scale(1.02); /* Slightly enlarge on hover for emphasis */
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #35424a;
    color: #ffffff;
    margin-top: 20px;
    border-top: 3px solid #e3e3e3; /* Add a top border for separation */
}
