body{
    margin:0;
    padding:0;
    display:flex;
    justify-content:center;
    align-items: center;
    height:100vh;
    font-family: verdana;
    background: #007180
}

.table-box{
    width:800px;
    height:400px;
    overflow-y: scroll;
    background: #ffffff
    box-shadow:0 10px 100px rgba(0,0,0)
}

table{
    width:100%
}

table,th,td{
    border:1px solid #005277;
    border-collapse: collapse;
    text-align: left;

}

th{
    position: sticky;
    top: 0;
    background: #00bcd4;
    color: #fff;

}

tr th:nth-child(1){
    width: 60px;
    text-align: center;
    background: #03707d;
    
}