@import url('/css/global.css');

.top {


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;

    .title {
        text-align: center;
        font-size: 64px;
        padding-top: 64px;
    }

    .list {
        gap: 32px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        .item {
            font-size: 64px;
            color: var(--bg-gray);
            font-weight: var(--eb);
            text-align: center;
            transition: 0.2s;
            cursor: pointer;
        }

        .item:hover {
            color: black;
        }
    }

    .introduction {
        color: var(--gray);
        font-size: 16px;
        text-align: center;
    }
}

.img-flex {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
    box-sizing: border-box;

    .showcase-img {
        width: calc(0.5 * (100% - 16px));
        aspect-ratio: 2/1;
        border-radius: 16px;
        cursor: pointer;
        border: 1px solid var(--border);
        transition: 0.2s;
    }

    .showcase-img:hover {
        box-shadow: var(--shadow);
    }
}


.develop, .design, .edit {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 64px;

    .title {
        text-align: center;
        font-size: 64px;
        font-weight: var(--eb);
    }

    .desc {
        color: var(--gray);
        font-size: 16px;
        text-align: center;
    }

    .btn {
        margin: auto;
    }
}

.list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.button-flex {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;

    .btn {
        margin: 0;
    }
}
.mobile {
    display: none;
}

@media (max-width: 1200px) {
.mobile {
    display: block;
}
.desktop {
    display: none;
}
  .title {
    .list {
        flex-direction: column;
        gap: 0;
        .item:focus {
            color: black;
        }
    }
  }

  .mid-title {
    font-size: 48px !important;
  }
  .img-flex {
    flex-direction: column;

    .showcase-img {
        width: 100%;
    }
  }

}