:root {
    --color-bk: #101010;
    --color-gy: #909090;
    --color-wh: #ffffff;
    --color-bg: #FAFAFA;
    --color-hl: #ffa528;
}

/* ---------------- COMMON ---------------- */

::selection {
    background-color: var(--color-bg);
    color: var(--color-hl);
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #20202b;
}

body > img, body > div > img{
    max-width: 720px;
    width: 100%;
    object-fit: contain;
}

body > div{
    position: relative;
}

body > div > a{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3rem;
    max-width: 720px;
    width: 100%;
    z-index: 10;
}

body > div > a > img{
    max-width: 720px;
    width: 100%;
    object-fit: contain;
}

@media screen and (max-width: 720px) {
    html{
        font-size: 2.22vw;
    }
}

@media screen and (max-width: 320px) {
    html{
        font-size: 7.2px;
    }
}