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

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

#card {
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#profile {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #f5f5f5;
    margin: 0 auto;
}

#name {
    font-size: 30px;
    font-weight: bold;
    margin-top: 20px;
}

#job {
    font-size: 20px;
}

#review {
    margin-top: 20px;
    font-size: 15px;
    text-align: center;
    width: 300px;
    overflow: hidden;
    word-break: keep-all;
    height: 150px;
}

#buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
    width: 300px;
    font-size: 35px;
}

.button {
    border: none;
    background-color: transparent;
    font-size: 40px;
    cursor: pointer;
}

#randomBtn {
    font-size: 15px;
    font-weight: bold;
    color: white;
    border: 1px solid cornflowerblue;
    border-radius: 15px;
    background-color: cornflowerblue;
    text-align: center;
    padding: 8px;
    margin-top: 20px;
    cursor: pointer;
    display: inline-block;
}