@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    /* font-family: "Playfair Display", serif; */
    /* font-family: sans-serif; */
    /* font-weight: 700; */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    -ms-overflow-style: none;
}

a {
    cursor: pointer;
    -webkit-tap-highlight-color : transparent;
}

::-webkit-scrollbar {
    display: none;
}

.container {
    position: absolute;
    width: 360px;
    height: 640px;
    background-color: rgb(243, 226, 208);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    border-radius: 10px;
}

/* 헤더 영역 */
.time {
    font-size: 9px;
    line-height: 20px;
}

#first-header {
    display: grid;
    grid-template-columns: 1fr 1fr 3fr 1fr 1fr 1fr 1fr;
    text-align: center;
    position: sticky;
    top: 0px;
    width: 100%;
    height: 20px;
    z-index: 100;
    line-height: 20px;
    padding: 0px 10px;
    opacity: 0.8;
    color: rgb(50, 50, 50);
    /* background-color: white; */
    /* border-bottom: 1px solid rgb(207, 207, 207); */
}

#first-header i {
    font-size: 9px;
    color: black;
    padding: 7px 0px;
}

#first-header span {
    /* font-family: sans-serif; */
    font-size: 11px;
    font-weight: 600;
}

#first-header #title {
    width: 100px;
    font-size: 9px;
    font-weight: 700;
    /* font-family: sans-serif; */
}

#second-header {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    grid-gap: 0px;
    text-align: center;
    position: sticky;
    width: 100%;
    height: 40px;
    z-index: 100;
    background-color: white;
    line-height: 40px;
    opacity: 0.8;
}

#second-header i {
    font-size: 20px;
    color: black;
    padding: 10px;
}

#second-header i:active {
    transform: scale(1.3);
    color: brown;
    transition: all 0.3s;
}


/* TABLE */
table {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-family:'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: rgb(104, 103, 103);
    text-align: center;
    height: 530px;
}

.sm-pic img{
    width: 60px;
    border-radius: 20px;
    margin: 0px 7px 0px 7px;
}

/* Bottom */
#bottom {
    height: 90px;
    background-color: rgb(201, 186, 172);
    display: flex;
    align-items: end;
    padding-bottom: 10px;
}
