* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: #00c8c7;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.construction {
    display: flex;
    justify-content: center;
    align-items: start;
    width: 100%;
    max-width: 900px;
    gap: 1rem;
    padding: 0 1rem;
}
.ctt-title {
    width: 50%;
    color: white;
}
.ctt-h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.ctt-p {
    line-height: 2rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.ctt-img {
    width: 50%;
    max-width: 600px;
}
.ctt-shopee {
    width: 100%;
    max-width: 250px;
}
.ctt-bg-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
@media (max-width: 768px) {
    .construction {
        flex-direction: column;
        padding: 0 10px;
        gap: 3rem;
        align-items: center;
    }
    .ctt-title {
        width: 100%;
        text-align: center;
    }
    .ctt-h1 {
        font-size: 2.5rem;
    }
    .ctt-p {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .ctt-img {
        width: 80%;
    }
    .ctt-shopee {
        max-width: 200px;
    }
}
