body {
    background-color: #101321;
}

h1, h2, h3, h4, h5, h6, p, li {
    color: white;
}

* {
    font-family: 'Roboto', sans-serif;
}

p {
    font-size: 18px;
}

a {
    color: #4E56A5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    border-bottom: 1px solid gray;
    padding: 10px;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

header .header-left {
    display: flex;
    align-items: center;
}

header .app-icon {
    width: 50px;
    height: 50px;
}

header .title {
    font-weight: bold;
    font-size: 22px;
    margin: 0 0 0 12px;
}

header .github-logo {
    width: 50px;
    height: 50px;
    color: #676F82;
    transition: color 0.3s;
}

header .github-logo:hover {
    color: #9ea8be;
}

main {
    padding: 0 30px;
}

@media (max-width: 600px) {
    main {
        padding: 0;
    }
}

.download-links {
    display: flex;
    flex-wrap: wrap;
}

.google-play-logo.disabled {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
}

.google-play-link-container {
    cursor: not-allowed;
}

.som-text {
    color: lightgray;
    font-weight: bold;
    text-decoration: underline dashed;
    text-underline-offset: 4px;
    transition: color 0.3s;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.som-text:hover {
    color: white;
}

footer {
    padding: 20px;
    text-align: center;
}