.body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.custom-btn {
    padding: 0.5em 1.25em;
    font-size: 18pt;
    border: none;
    font-weight: bold;
    border-radius: 15px;
    background-color: #6D80FF;
    color: white;
    text-decoration: none;
    cursor: pointer;

    transition: all .25s;
}

.custom-btn:hover {
    background-color: #4A68FF;
}

.custom-btn:focus,
.custom-btn:active {
    box-shadow: 0px 0px 0px 8px #f2bf818c;
}

.socials-icon {
    padding: 18px;
    border-radius: 15px;
    width: 80px;
}

.socials-text {
    width: 20ch;
}

.socials-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: row;
}

.section {
    padding: 1.5em;
    border-radius: 15px;
}

.faded {
    pointer-events: none;
    cursor: default;
    opacity: 0.5;
}

.app-link {
    text-decoration: none;
    color: inherit;
}

.app-link:hover {
    text-decoration: none;
    color: inherit;
}

.app-wrapper {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 10px;
}

.apps-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

#download-btn {
    padding: 0px 50px;
}

#logo {
    width: 150px;
    height: 150px;
}

#moto {
    width: 25ch;
}

#release-version {
    font-weight: normal;
    font-size: 18px;
}

@media screen and (max-width: 425px) {
    /* #moto {
        width: 15ch;
    } */
}

@media screen and (max-width: 1200px) {
    .download-btn-wrapper {
        width: 100%;
        margin-top: 20px;
    }
    
    #download-btn {
        padding: 10px;
    }
}

@media (prefers-color-scheme: light) {
    .body {
        color: #333;
        background-color: #eef3f5;
    }

    .text-grey {
        color: #6c757d;
    }

    .socials-icon {
        border: 4px solid #6c757d5c;
        color: #5c6369;
    }

    .socials-icon:hover {
        border: 4px solid transparent;
        background-color: #6c757d5c;
        color: white;
    }

    .section {
        background-color: #e5ebed;
    }

    .app-wrapper {
        background-color: #dee5e7;
    }

    .app-wrapper:hover {
        background-color: #d3dadf;
    }
}

@media (prefers-color-scheme: dark) {
    .body {
        color: #fff;
        background-color: #1a1a1a;
    }

    .text-grey {
        color: #8e959c;
    }

    .socials-icon {
        border: 4px solid #6c757dba;
        color: #8e959c;
    }

    .socials-icon:hover {
        border: 4px solid transparent;
        background-color: #6c757dba;
        color: white;
    }

    .section,
    .app-wrapper {
        background-color: #e5ebed0a;
    }

    .app-wrapper:hover {
        background-color: #9ea8ae0a;
    }
}