@font-face {
    font-family: kalameh;
    src: url("./KalamehWeb-Medium.woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: kalameh;
    user-select: none;
}

/* Home START */

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    margin: 50px 0;
}

.home-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    gap: 10px;
}

.home-rast {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
    width: 550px;
}

.home-rast #glogo {
    display: flex;
    align-content: center;
    justify-content: center;
    width: 150px;
}

.home-rast h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: black;
}

.home-rast h1 span {
    color: green;
}

.home-rast p {
    display: flex;
    align-items: center;
    justify-content: center;
    color: gray;
    text-align: center;
}

.download-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.download-btns a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: white;
    padding: 15px;
    border-radius: 15px;
    font-size: 18px;
}

.download-btns a img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
}

.download-btns #gdwn {
    background-color: green;
}

.download-btns #mdwn {
    background-color: #333343;
}

.home-chap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 550px;
    max-width: 550px;
}

.home-chap img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: gray;
}

#support a {
    text-decoration: none;
    color: red;
}

/* Home END */

/* Responsive START */

@media screen and (max-width:768px) {

    .home-container {
        width: 100%;
        flex-direction: column-reverse;
    }

    .home-rast,
    .home-chap {
        width: 100%;
    }

    .home-rast h1 {
        font-size: 18px;
    }

    .home-rast p {
        font-size: 14px;
    }

    .download-btns a {
        font-size: 14px;
    }

}

@media screen and (min-width:769px) and (max-width:900px) {

    .home-container {
        width: 100%;
        flex-direction: column-reverse;
    }

    .home-rast,
    .home-chap {
        width: 100%;
    }

}

@media screen and (min-width:901px) and (max-width:1200px) {

    .home-container {
        width: 100%;
    }

    .home-rast,
    .home-chap {
        width: 100%;
    }

    .home-rast h1 {
        font-size: 20px;
    }

    .home-rast p {
        font-size: 14px;
    }

    .download-btns a {
        font-size: 14px;
    }

}

/* Responsive END */