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

.expandBtn {
    cursor: pointer;
}

.expanded {
    transform: rotate(45deg);
}

.hidden {
    display: none;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.box {
    width: 500px;
    border-radius: 20px;
    padding: 30px;
    margin: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.title {
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    overflow: hidden;
    word-break: keep-all;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: grey;
    margin: 20px 0;
}
