* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.main {
    width: 80%;
    /* height: 100vh; */
    display: grid;
    justify-items: center;
    /* align-items: center; */
    padding: 20px;
    margin: 0 auto;
}

.main .head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;

}

.main .table {
    width: 100%;
    text-align: center;
}

.main .table tr:nth-child(even) {
    background-color: #f2f2f2;
}