body {
    font-family: Arial, sans-serif;
    background-color: #6cc7ef; /* Light blue background */
    color: #2b2f31; /* Dark gray text */
    margin: 0;
    padding: 0;
}

header {
    background-color: #1c93c7; /* Mid blue background */
    color: #fff; /* White text */
    padding: 20px;
    text-align: center;
    border-radius: 10px 10px 0 0; /* Rounded corners at the top */
}

h1 {
    color: #fb9000; /* Orange for 'n' */
    display: inline;
    font-size: 2.5em;
    margin: 0;
}

h1 span {
    color: #6cc7ef; /* Light blue for 'Deco' */
}

h2 {
    color: #0c445c; /* Dark blue for headings */
    font-size: 2em;
    margin-top: 20px;
}

a {
    color: #1c93c7; /* Mid blue links */
    text-decoration: none;
}

a:hover {
    color: #0c445c; /* Dark blue on hover */
    text-decoration: underline;
}

section {
    padding: 20px;
    margin: 20px 60px; /* 60 pixels margin on left and right */
    background-color: #fff; /* White background for sections */
    border: 1px solid #0c445c; /* Dark blue border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #2b2f31; /* Dark gray background */
    color: #fff; /* White text */
    text-align: center;
    padding: 10px;
    position: relative;
    width: 100%;
    bottom: 0;
    border-radius: 0 0 10px 10px; /* Rounded corners at the bottom */
}

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

li {
    padding: 5px 0;
}

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

.screenshots img {
    max-height: 70vh; /* 70% of the viewport height */
    max-width: 70%; /* Ensure images do not exceed 70% of the container width */
    width: auto;
    margin: 10px;
    border: 1px solid #0c445c; /* Dark blue border */
    border-radius: 5px;
}

@media (max-width: 600px) {
    header, section, footer {
        padding: 10px;
        margin: 10px; /* Adjust margin for smaller screens */
    }

    .screenshots {
        flex-direction: column;
        align-items: center;
    }

    .screenshots img {
        margin: 10px 0;
        max-width: 100%; /* Ensure images take full width on smaller screens */
    }
}

.feature-title {
    font-weight: bold;
    color: #0c445c; /* Dark blue */
}

.appstore-link {
    display: block;
    margin: 10px auto 0;
}

.appstore-link img {
    width: 150px;
}

/* Navigation menu styles */
nav ul {
    list-style-type: none;
    padding: 0;
}

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

nav ul li a {
    color: #fff; /* White text for menu items */
    text-decoration: none;
}

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