@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");


* {
    margin: 0;
    padding: 0;
    font-family: "pretendard";
    color: #fff;
}

img {
    width: 100px;
}

:root {
    --bg: #090C2A;
    --white-bg: #2f2e4e;
    --dark-bg: #1C1A3F;
    --outline: #ffffff40;
    --primary: rgb(0, 174, 255);
}


body {
    background-color: var(--bg);
    padding: 0 40px;
    overflow: scroll;
}

main {
    position: relative;
    margin-top: 100px;
    width: 100%;
    height: 100dvh;

    display: flex;
    flex-direction: column;
    align-items: center;

}


.explain {
    font-size: 40px;
    color: white;
    margin-top: 68px;
}

.channelValue {
    margin-top: 34px;
    width: 100%;
    height: 46px;
    background-color: var(--dark-bg);
    padding-left: 8px;
    border: 0;
    outline: 0;
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
}

@media (600px > width) {
    p {
        font-size: 24px;
    }
}

.channels {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 68px;
    width: 100%;
    max-width: 490px;
    gap: 20px;
}

.channel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--dark-bg);
    cursor: pointer;
}

.channelName {
    font-size: 24px;
    color: white;
}

.subChannelName {
    margin-top: 5px;
    font-size: 18px;
    color: var(--outline)
}

.timeAndPeople {
    display: flex;
    justify-content: end;

    >p {
        margin-top: 22px;
        font-size: 16px;
        color: var(--outline);
        margin-right: 10px;
    }
}

.setting {
    position: fixed;
    top: 32px;
    right: 32px;
    text-align: end;
}

.setting>img {
    width: 50px;
}

.popup-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #00000055;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--bg);
    border-radius: 12px;
    padding: 35px;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    max-width: 860px;
    display: none;

    >.pop {
        display: flex;
        justify-content: space-around;
        display: flex;

         img {
            width: 160px;
            border-radius: 10px;
        }

        >.cencel>img {
            margin-left: 100px;
            width: 34px;
            height: 34px;
        }

        >.themes {
            display: flex;
            gap: 20px;
            >p {
                text-align: center;
            }
        }

    }

    >.colorChange {
        background-color: #181825;
        width: 90%;
        margin: 40px auto 0;
        border-radius: 10px;
        height: 180px;
        padding: 20px;
        font-size: 20px !important;

        >p {
            margin-bottom: 4px;

            >input {
                background-color: rgb(88, 88, 88);
                outline: none;
                color: rgb(173, 173, 173);
                border: 0;
                border-radius: 2px;
                /* border: ; */
            }
        }
    }
}