body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}

:root {
    --primary-color: #0af;
    --secondary-color: #005f80;
    --accent-color: #fff;
    --background-color: #023
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    overflow-x: hidden
}

.ccff {
    position: absolute;
    top: 20px;
}

.App {
    background-color: #023;
    background-color: var(--background-color);
    color: #fff;
    color: var(--accent-color);
    min-height: 100vh;
    overflow-x: hidden;
    text-align: center
}

.App, .App-header {
    box-sizing: border-box;
    width: 100%
}

.App-header {
    background-color: #005f80;
    background-color: var(--secondary-color);
    padding: 12px
}

.navbar {
    align-items: center;
    background-color: #0af;
    background-color: var(--primary-color);
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    width: 100%
}

.navbar-title {
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap
}

.navbar-links {
    align-items: center;
    display: flex;
    font-size: 22px;
    font-weight: 700;
    gap: 20px;
    padding-left: 20px
}

.navbar-links a {
    color: #fff;
    color: var(--accent-color);
    padding: 5px;
    text-decoration: none;
    transition: background-color .3s
}

.navbar-links a:hover {
    background-color: #005f80;
    background-color: var(--secondary-color);
    border-radius: 5px
}

.navbar-links a .icon {
    height: 20px;
    vertical-align: middle;
    width: 20px
}

.about-section {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: left;
    width: 100%
}

.about-section h2 {
    color: #0af;
    color: var(--primary-color);
    text-align: center
}

.description {
    line-height: 1.6;
    max-width: 800px;
    text-align: justify
}

.screenshot-grid {
    grid-gap: 10px;
    box-sizing: border-box;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    justify-content: center;
    justify-items: center;
    margin-top: 20px
}

.screenshot {
    border: 1px solid #0af;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    height: auto;
    max-width: 100%
}

@media (max-width:600px) {
    .navbar-links a {
        font-size: 0
    }

    .navbar-links a:before {
        content: attr(data-icon);
        font-size: 22px
    }

    .chart-container {
        align-items: flex-start;
        flex-direction: column
    }

    .chart-container iframe {
        margin-bottom: 12px;
        margin-left: 0 !important;
        margin-right: 0 !important
    }
}

/*# sourceMappingURL=main.7775e414.css.map*/