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

header {
    background-color: #0072C6; /* Finnish blue */
    color: white;
    text-align: center;
    padding: 1em 0;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #0072C6; /* Finnish blue */
}

a {
    color: #0072C6; /* Finnish blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    background-color: #0072C6; /* Finnish blue */
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
.button:hover {
    background-color: #005A9E;
    text-decoration: none;
}
/* Remove flex from #screenshots and add it to .screenshots-row */
#screenshots {
    margin-bottom: 20px;
}
.screenshots-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: flex-start;
    gap: 1%;
}
.screenshot-img {
    max-width: 25%;
    width: 25%;
    height: auto;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 2px 2px 8px #eee;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    margin-top: 2em;
    /* Remove position: fixed and bottom: 0 */
}