html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: noto,notojp,notokr,Helvetica,Microsoft YaHei,Apple SD Gothic Neo,Malgun Gothic,맑은 고딕,Dotum,돋움,sans-serif;
}
body {
    --small-font-size: 15px;
    --medium-font-size: 24px;

    font-size: var(--small-font-size);
    background: linear-gradient(#DC9389, #E8BFD1);
    background-repeat: no-repeat;
    transition: padding 1s;
    height: auto;
    color: #000000;
}
body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('/images/bg.png') no-repeat center center;
}
.wrapper {
    --small-padding: 3rem 2rem;
    --medium-padding: 4rem 3rem;

    display: flex;
    align-items: center;
    flex-direction: column;
    width: 500px;
    height: auto;
    padding: var(--small-padding);
    background-color: rgba(255, 255, 255, .7);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    zoom: 1;
    border: 1px solid #000000;
    border-radius: 1rem;
}
.container {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.container:not(:first-child) {
    --small-margin-top: 2rem;
    --medium-margin-top: 3rem;

    margin-top: var(--small-margin-top);
}
.container.special-class {
    --small-margin-top: 24px;
    --medium-margin-top: 36px;

    margin-top: var(--small-margin-top);
}
.container-content {
    width: 100%;
}
.container-content:not(:first-child) {
    --small-padding-top: 2rem;
    --medium-padding-top: 3rem;

    padding-top: var(--small-padding-top);
}
.container.fl-content {
    --small-margin-top: 24px;
    --medium-margin-top: 36px;

    border-radius: .75rem;
    background-color: rgba(0, 0, 0, .7);
    color: #ffffff;
    margin-top: var(--small-margin-top);
}
.with-border {
    border-radius: 3px;
    border: 2px solid #9f7b09;
}
.with-border.blue {
    border-color: #1c6ec0;
}
.with-border.yellow {
    border-color: #DC9389;
}
.row {
    --smal-padding: 2rem 2rem 0;
    --medium-padding: 3rem 3rem 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--small-font-size);
    padding: var(--smal-padding);
}
.row:not(:first-child) {
    --small-padding-top: 1rem;
    --medium-padding-top: 2rem;

    padding-top: var(--small-padding-top);
}
.row:last-child {
    --small-padding-bottom: 2rem;
    --medium-padding-bottom: 3rem;

    padding-bottom: var(--small-padding-bottom);
}
.row .label {
    position: relative;
    flex: 1;
    display:flex;
    align-items: center;
}
.row .value {
    font-weight: lighter;
    flex: 1;
    display: flex;
    align-items: center;
}
button.btn-copy {
    border: 0;
    padding: 0;
    margin: 0;
    background-color: transparent;
    justify-content: center;
    display: flex;
    align-items: center;
}
button.btn-copy div.copy__icon {
    background-color: yellow;
    -webkit-mask: url(../images/clipboard_b.svg) no-repeat center;
    mask: url(../images/clipboard_b.svg) no-repeat center;
    width: 1rem;
    height: 1.5rem;
    cursor: pointer
}
button.btn-copy div.copy__icon:hover {
    background-color: #DC9389;
}
.color-yellow {
    color: #ffcc00;
}
.color-red {
    color: #ff0000;
}
.bold {
    font-weight: 900;
}
.text-center {
    text-align: center;
}
.note {
    font-size: 19px;
}
.copy-text {
    display: flex;
    flex: 1;
    align-self: center;
    align-items: center;
    padding: 7px 0 0;
}

.copy-text img {
    width: 1rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

.copy-text p.paragraph {
    padding: 0;
}

.no-padding {
    padding: 0;
}
.paragraph {
    padding: 0;
    margin: 0;
    word-break: keep-all;
}
.paragraph:not(:first-child) {
    padding: .5rem 0 0;
}

.value span + button {
    margin-left: 0.5rem;
}

#snackbar {
    --small-font-size: 1rem;
    --medium-font-size: 2rem;

    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: rgba(0, 0, 0, .7);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: var(--small-font-size);
    border-radius: 1rem;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

ol {
    --small-padding: 0 0 0 1rem;
    --medium-padding: 0 0 0 2rem;

    padding: var(--small-padding);
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@media (max-width: 980px) {
    body {
        font-size: var(--medium-font-size);
    }
    .wrapper {
        min-width: 80%;
        padding: var(--medium-padding);
    }
    .container:not(:first-child) {
        margin-top: var(--medium-margin-top);
    }
    .container.special-class {
        margin-top: var(--medium-margin-top);
    }
    .container-content:not(:first-child) {
        padding-top: var(--medium-padding-top);
    }
    .container.fl-content {
        margin-top: var(--medium-margin-top);
    }
    .row {
        font-size: var(--medium-font-size);
        padding: var(--medium-padding);
    }
    .row:not(:first-child) {
        padding-top: var(--medium-padding-top);
    }
    .row:last-child {
        padding-bottom: var(--medium-padding-bottom);
    }
    button.btn-copy div.copy__icon {
        height: 3rem;
        width: 3rem;
    }
    .note {
        font-size: 30px;
        text-align: center;
    }
    #snackbar {
        font-size: var(--medium-font-size);
    }
    .copy-text img {
        height: 3rem;
        width: 3rem;
    }
}