@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@500;700;900&display=swap');
@font-face {
    font-family: 'chilgok';
    src: url('./font/chilgok_ttf/Chilgok_Kaj.ttf') format('truetype');
}
@font-face {
    font-family: 'blackHanSans';
    src: url('./font/Black_Han_Sans/BlackHanSans-Regular.ttf') format('truetype');
}

#app {
    margin:auto;
}

nav {
    padding:40px;
    text-align: center;
}

section {
    min-height: 100vh;
    /* display:flex; */
    /* align-items: center; */
    justify-content: center;
}

#horizen-info {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 900;
    height: 200px;
}

#horizen-calculator {
    font-family: 'Noto Sans KR';
    font-weight: 500;
    position: absolute;
    height: 20%;
    width:100%;
    display:flex;
    align-items: center;
    justify-content: center;
}
#result-contents {
    margin:auto;
    text-shadow: 0px 2.5px 0px #000000;
    background: rgba(19, 24, 24, 0.2);
    color:#f8e2b4;
}
.center {
    min-width: 100%;
    text-align: center;
}

#last-update-at {
    color:#00ead3;
}

#horizen-krw {
    text-shadow: 0px 2.5px 0px #000000;
    color:#fff5b7;
    font-weight: bold;
}

body {
    color:#FFF;
    font-family: blackHanSans;
    background: url('./image/horizen_background3.jpeg');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.input-group {
    font-family: blackHanSans;
    margin: 0 auto;
}

#user-input-number {
    text-align: center;
    width:150px;
}

#result {
    /* padding-bottom: 20px; */
    font-family: 'Noto Sans KR';
    font-weight: 900;
    /* width:100%;
    margin:auto; */
}

#kimp-contents {
    color:#e1e5ea
}

.kimp-result {
    margin-top: 20px;
    background: rgba(19, 24, 24, 0.7);
}

footer {
    font-family: chilgok;
    font-weight: bold;
    color:black;
    position: fixed;
    height: 20px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin-bottom: 0px;
    background-color: white;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#kimp {
    height: 30%;
    width: 90%;
    margin:auto;
}

.table-bordered {
    text-align: center;
    min-width: 100%;
}

.table-bordered tbody{
    background: rgb(255, 255, 255, 0.1);
    color: #c0fefc;
    font-family: 'Noto Sans KR';
    font-weight: 500;
}

.table-bordered thead {
    text-shadow: 0px 2.5px 0px #072401;
    background: rgba(156, 96, 96, 0.4);
    color:#e1e5ea;
    font-family: 'Noto Sans KR';
    font-weight: 900;
}

.area {
    animation: blur 2.5s ease-out;
}
  
@keyframes blur {
    from {
        text-shadow:0px 0px 0px #000000,
        0px 0px 2px #000000, 
        0px 0px 3px #000000,
        0px 0px 3px #000000,
        0px 0px 3px #000000,
        0px 0px 3px #000000,
        0px 0px 3px #000000,
        0px 0px 3px #000000,
        0px 0px 5px #000000,
        0px 0px 5px #000000,
        0px 0px 5px #fff,
        0px 0px 7px #fff,
        0px 5px 7px #fff,
        0px 5px 7px #fff,
        0px 5px 7px #fff,
        0px 5px 7px #fff,
        0px -5px 7px #fff,
        0px -5px 7px #fff;
    }
}