@charset "UTF-8";

/* CSS Document */

/** google font IBM Plex Sans KR */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex Sans KR', sans-serif;
    background-color: #f5f5f5;
}

#appBar {
    background-color: white;
    height: 50px;
    line-height: 30px;
    padding: 0 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

#appBar__title {
    float: left;
    color: cornflowerblue;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#appBar__menu {
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 30%;
    transform: translate(-10%, -40%);
    cursor: pointer;
}

.hidden {
    display: none;
}

.box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.blurOn {
    animation: focus-in 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.blurOff {
    animation: focus-out 1s forwards;
}

@keyframes focus-in {
    0% {
        -webkit-filter: blur(0px);
    }
    100% {
        -webkit-filter: blur(5px);
    }
}

@keyframes focus-out {
    0% {
        -webkit-filter: blur(5px);
    }
    100% {
        -webkit-filter: blur(0px);
    }
}

#closeButton {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: white;
    cursor: pointer;
}