@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav, footer {
    flex-shrink: 0;
}

#content {
    flex: 1;
}

.header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 1.25em;
}

.section {
    margin: 20px 0;
}

.section h2 {
    color: #007bff;
    margin-bottom: 10px;
}

.section p {
    line-height: 1.6;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature {
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 30%;
    text-align: center;
}

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

.footer {
    background-color: #f4f4f4;
    color: #333333;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    margin-top: auto;
}

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

.footer ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer ul li a {
    color: #333333;
    text-decoration: none;
}

