html {
    min-height: 100%;
    margin: 0;
}

body {
    display: grid;
    min-height: 100%;
    width: 100vw;
    margin: 0;
}

/*------------------------------FONTS------------------------------*/
.bai-jamjuree-font,
h1,
h2,
h3,
span,
button {
    font-family: "Bai Jamjuree", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: hsl(210, 10%, 33%);
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

span {
    color: hsl(201, 11%, 66%);
    font-weight: 300;
    line-height: 1.8rem;
}

/*------------------------------FLEXBOX------------------------------*/
.flex-column,
/*!-HEADER-SECTION-!*/
header,
.center-article,
/*!-MAIN-SECTION-!*/
main,
section,
#computer-span-col,
.icon-text-area {
    display: flex;
    flex-direction: column;
}

.flex-row,
/*!-HEADER-SECTION-!*/
#btn-download-article,
/*!-MAIN-SECTION-!*/
#computer-span-article,
#three-icon-article,
#section-images,
/*!-FOOTER-!*/
footer,
#footer-span-article,
#social-media-article {
    display: flex;
    flex-direction: row;
}

/*------------------------------CURSOR------------------------------*/
button,
footer span,
ion-icon {
    cursor: pointer;
}

/*------------------------------ALIGN-JUSTFIY------------------------------*/
header,
.icon-text-area,
footer {
    align-items: center;
}

.center-article,
.icon-text-area {
    text-align: center;
}

#section-images,
footer {
    justify-content: space-between;
}

/*------------------------------BUTTON------------------------------*/
button {
    padding-block: 0.8rem;
    padding-inline: 1.5rem;
    border-radius: 2rem;
    border-style: none;
    color: #FFFFFF;
    border-bottom-style: inset;
}

#btn-dwn-ios {
    background-color: hsl(171, 66%, 44%);
    border-bottom-color: hsl(171deg 67.25% 29.12%);
    box-shadow: 5px 5px 26px 1px #26baa494;
}

#btn-dwn-ios:hover {
    background-color: hsl(171, 66%, 54%);
}

#btn-dwn-mac {
    background-color: hsl(233, 100%, 69%);
    border-bottom-color: hsl(233deg 45.75% 40.12%);
    box-shadow: 5px 5px 26px 1px #6173ffac;
}

#btn-dwn-mac:hover {
    background-color: hsl(233, 87%, 76%);
}

/*------------------------------AREA------------------------------*/
/*!-HEADER-SECTION-!*/
header {
    padding: 5rem;
    gap: 2rem;
    background-image: url(../images/bg-header-desktop.png);
    background-size: cover;
    background-color: #ffffff7d;
    background-blend-mode: hard-light;
}

#header-logo {
    width: 4rem;
}

#btn-download-article {
    gap: 1rem;
    justify-content: center;
    width: fit-content;
    align-self: center;
}

/*!-MAIN-SECTION-!*/
main {
    margin-inline: 20vw;
}

section {
    gap: 5rem;
}

#computer-span-article {
    margin-block: 5rem;
    gap: 8rem;
    transform: translateX(-2%);
}

#computer-span-col {
    margin-top: 4rem;
}

#image-devices {
    width: 100%;
}

#three-icon-article {
    gap: 2rem;
}

.icon-width {
    width: 3rem;
}

#section-images {
    margin-block: 8rem;
}

#section-images img {
    height: 2rem;
}

/*!-FOOTER-!*/
footer {
    padding-block: 2rem;
    padding-inline: 10rem;
    background-color: hsl(0, 0%, 93%);
}

footer span {
    color: hsl(210, 10%, 33%);
}

footer span:hover,
ion-icon:hover {
    color: #26baa4;
}

#footer-logo {
    height: 4rem;
}

#footer-span-article {
    gap: 4rem;
}

ion-icon {
    font-size: 2rem;
}

#social-media-article {
    gap: 1rem;
}

@media (max-width: 768px) {
    #btn-download-article,
    #computer-span-article,
    #three-icon-article,
    #section-images,
    footer,
    #footer-span-article {
        flex-direction: column;
    }

    /*!-HEADER-SECTION-!*/
    #computer-span-article {
        transform: translateX(0);
        gap: 0;
        align-items: center;
    }

    #image-computer {
        width: 80%;
    }

    /*!-MAIN-SECTION-!*/
    main {
        margin-inline: 0;
        margin: 1rem;
    }

    #computer-span-col {
        text-align: center;
    }

    #section-images {
        align-items: center;
    }

    #section-images img {
        width: 11rem;
        height: 3rem;
    }

    /*!-FOOTER-!*/
    footer {
        gap: 2rem;
        padding-inline: 0;
        padding-inline: 1rem;
    }

    #footer-span-article {
        gap: 0;
    }
}