@import url('https://combinefonts.hanmesoft.com/cssServer/all');
@import url('https://combinefonts.hanmesoft.com/cssServer/combine?korFont=Jal_Haru&engFont=Hammersmith%20One&newFontFamily=Combined');
@import url('https://combinefonts.hanmesoft.com/cssServer/combine?korFont=HangeulNuri-Bold&engFont=Hammersmith%20One&newFontFamily=HangeulNuri_HammersmithOne');
@import url('https://combinefonts.hanmesoft.com/cssServer/combine?korFont=Noto%20Sans%20KR%20Regular%20400&engFont=Open%20Sans%20Regular%20400&newFontFamily=NotoSans_OpenSans');
@import url('https://combinefonts.hanmesoft.com/cssServer/combine?korFont=InkLipquid&engFont=Dancing%20Script&newFontFamily=InkLipquid_Dancingscript');

html,
body {
    font-family: 'Combined', sans-serif;
    font-size: large;
    overflow-x: hidden;
}
h1,
h2 {
    font-family: 'HangeulNuri_HammersmithOne', sans-serif;
    word-break: keep-all;
}
h1 > a {
    color: #222;
}
h2 > a {
    color: #222;
}

.combinefonts-output-url {
    word-break: break-all;
}

#snackbar {
    visibility: hidden;
    min-width: 360px;
    margin-left: -180px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 2000;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

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

@-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;
    }
}

/* From https://getbootstrap.com/docs/4.1/examples/sticky-footer/ */
/* Sticky footer styles:
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 60px; /* Margin bottom by footer height */
}
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* Set the fixed height of the footer here */
    line-height: 60px; /* Vertically center the text there */
    background-color: #f5f5f5;
}
/* From https://stackoverflow.com/questions/8865458/how-do-i-vertically-center-text-with-css */
.footer-div {
    height: 60px;
    line-height: 60px;
    text-align: center;
}
.vertical-align-middle {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/
