html {
    background-color: #120A0A;
    color: #fff;
}

body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

:root {
    --section-max-width: 1000px;
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Inter', sans-serif;
}


main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

main section {
    margin: 150px 0;
}


/* small 안에 ul 넣으면 리스트가 당구장 아이콘으로 변경 */
small ul {
    padding-left: 0;
}
small li {
    list-style: none;
    padding-left: 1.5em;
    text-indent: 0em;
    color: #fff8;
    position: relative;
}
small li::before {
    content: "※ ";
    position: absolute;
    left: 0;
    top: 0;
}

.placeholder {
    border: 1px solid #fff3;
    padding: 28px 30px;
}

.placeholder h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff8;
}

.placeholder p {
    font-size: 24px;
    font-weight: 300;
    color: #fff8;
}

.TBA {
    font-size: 36px;
    font-weight: 700;
    color: #fff8;
}

@media (max-width: 1100px) {
    :root {
        --section-max-width: 90%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-max-width: 90%;
    }
}

@media (max-width: 480px) {
    :root {
        --section-max-width: 90%;
    }
}
