.outfit-bold {
    font-family: "Outfit", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.outfit-regular {
    font-family: "Outfit", serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.content-home {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.header-home {
    font-size: 50px;
}

body {
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    padding: 50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    margin: 20px;
    width: 100%;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.logo {
    width: 100px;
    height: auto;
    border-radius: 10px;
}

.app-name {
    font-size: 36px;
    margin: 0;
}

.screenshots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.screenshots img {
    width: 150px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.description {
    font-size: 18px;
    margin: 20px 0;
    text-align: left;
}

.app-store-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.app-store-link:hover {
    background-color: #0056b3;
}

.support {
    margin-top: 30px;
    font-size: 16px;
    color: #555;
}

.support a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

/* Navigation Bar Styles */
.navbar {
    background-color: #f0f0f0;
    text-align: center;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    /* display: inline-flex; */
}

.navbar li {
    padding: 10px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
}

.navbar a:hover {
    text-decoration: underline;
}

.privacy-policy {
    text-align: left;
    margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {

    .container,
    .container-home {
        padding: 20px;
        margin: 10px;
        max-width: 90%;
    }

    .header {
        flex-direction: column;
    }

    .app-name {
        font-size: 28px;
    }

    .screenshots img {
        width: 100px;
    }

    .description {
        font-size: 16px;
    }

    .navbar ul {
        flex-direction: column;
    }

    .navbar li {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .header-home {
        font-size: 36px;
    }

    .logo {
        width: 80px;
    }

    .app-name {
        font-size: 24px;
    }

    .screenshots img {
        width: 80px;
    }

    .app-store-link {
        font-size: 16px;
        padding: 8px 16px;
    }

    .description {
        font-size: 14px;
    }
}