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

.box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.container {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 30px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    word-break: break-all;
}

.center {
    align-items: center;
    justify-content: center;
}


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

.material-icons {
    cursor: pointer;
}

.todoCol {
    width: 400px;
}