.site-header {
    background-image: linear-gradient(110deg, #cc78ff, #959BFF 58%, #95c4ff 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header>img {
    width: 32px;
    height: auto;
    padding: 12px;
}

.site-header>#kotlin {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entry-header {
    width: 100%;
    background-image: linear-gradient(110deg, #cc78ff60, #959BFF60 58%, #95c4ff60 100%);
    padding-top: 40px;
    padding-bottom: 40px;
    font-family: "Inter", sans-serif;
    text-align: center;
}

.entry-header>h1 {
    margin: 0px;
    font-size: 68px;
    font-weight: 500;
}

.entry-header>h2 {
    margin: 0px;
    font-size: 24px;
    font-weight: 300;
}

.description {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 32px;
    font-family: "Inter", sans-serif;
}

.description>div {
    width: 400px;
    font-size: 22px;
    margin-right: 24px;
}

.description>div>p,
ul {
    margin-top: 4px;
    margin-bottom: 4px;
}

.description>img {
    width: 360px;
    height: auto;
}

.download {
    display: flex;
    flex-direction: column;
    width: 410px;
    padding: 16px;
    margin-bottom: 24px;
    background-image: linear-gradient(110deg, #cc78ff60, #959BFF60 58%, #95c4ff60 100%);
    border: none;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
}

.download>a {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.wrapper_download-info {
    display: flex;
    flex-direction: column;
}

.download-info {
    margin-top: 3px;
    margin-bottom: 3px;
}

.download-info>#left {
    font-weight: 500;
}

.download-info>#right {
    margin-left: 4px;
    font-weight: 300;
}

#button_donwload-apk {
    border: none;
    border-radius: 6px;
    background: #086FFF;
    margin-top: 12px;
    margin-left: auto;
    user-select: none;
    cursor: pointer;
    transition-duration: 0.3s;
}

#button_donwload-apk:hover {
    background: #0657c9;
}

#wrapper_download-apk {
    display: flex;
    align-items: center;
    padding: 8px;
}

#wrapper_download-apk>img {
    width: 24px;
    height: auto;
}

#wrapper_download-apk>a {
    margin-left: 8px;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 300;
}

@media screen and (max-width: 700px) {
    .entry-header {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .entry-header>h1 {
        font-size: 50px;
    }

    .entry-header>h2 {
        font-size: 20px;
    }

    .description {
        flex-direction: column;
        align-items: center;
    }

    .description>div {
        width: auto;
        font-size: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .description>img {
        width: calc(100vw - 2em);
        height: auto;
        margin-top: 20px;
    }

    .download {
        width: calc(100% - 48px);
        margin: 8px;
    }
}