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

.clock {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 75px;
}

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

#nameOfButton {
    font-size: 20px;
    margin-bottom: 10px;
}

.colorPickerBTN {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.colorPicker__color {
    width: 50px;
    height: 50px;
    margin: 10px;
    cursor: pointer;
}

#closeBTN {
    position: relative;
    top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}