body{
    padding: 0px;
    margin: 0px;
}
header{
    background-color: rgb(60, 60, 220);
    color: white;
    width: 100%;
    height: 100px;
    text-align: center;
    padding: 10px;
    margin: 0px;
    font-size: 30px;
    text-transform: uppercase;
}
.navi{
    background-color: rgb(163, 180, 180);
    padding: 0px;
    margin: 0px;
    height: 40px;
}
.navi ul{
    display: block;
    list-style: none;
    margin: 0px;
}
.navi ul li a{
    margin: 0px 5px;
    padding: 8px;
    float: left;
    text-decoration: none;
    font-size: 20px;
}
.navi ul li a:not(.active):hover {
    background-color: rgb(72, 74, 74);
    color: white;
}
.navi ul li a:not(.active):active{
    background-color: rgb(136, 142, 142);
}
.active{
    background-color: rgb(10, 166, 10);
}
main{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem!important;
    text-align: center;
}
.table{
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: scroll;
}
thead{
    font-size: 25px;
}
.exit{
    /* height: 700px; */
    /* border: solid black; */
    align-items: center;
    margin:2% 10%;
    
}
.exit td,.exit tr,.exit th{
    text-align: center;
    font-size: 20px;
    /* word-wrap: nowrap; */
}


.add{
    background-color: greenyellow;
    margin: 20px;
    height: 40px;
    width: 160px;
    font-size: 20px;
    border-radius: 10px;
    transition: 0.4s;
}
.add:hover{
    background-color: rgb(14, 171, 6);
    box-shadow: -2px 5px 15px 3px rgb(187, 235, 116);
}
.rem{
    background-color: rgb(241, 95, 95);
    height: 30px;
    width: 100px;
    border-radius: 10px;
    transition: 0.4s;
}
.cancel{
    background-color: rgb(241, 95, 95);
    margin-left: 30px;
    height: 40px;
    width: 160px;
    font-size: 20px;
    border-radius: 10px;
    transition: 0.4s;
}
.cancel:hover{
    background-color: red;
    box-shadow: -2px 2px 10px 2px rgba(202, 69, 69, 0.993);
    color: white;
}
.rem:hover{
    background-color: red;
    color: white;
}
.rem:active,.add:active{
    background-color: black;
    color: white;
}
.newTable{
    border: solid rgb(67, 65, 65);
    text-align: right;
    font-size: 20px;
    background-color: beige;
    box-shadow: -2px 2px 10px 1px;
    border-radius: 10px;
    padding: 10px;
}
input[type="text"],input[type="email"],input[type="number"]{
    padding: 3px;
    width: 400px;
    height: 30px;
    font-size: 18px;
    transition: 0.5s;
}
input[type="text"]:hover,input[type="email"]:hover,input[type="number"]:hover{
    border: solid rgba(98, 242, 247, 0.693);
    box-shadow: -2px 5px 15px 3px rgb(136, 232, 227);
}
h2{
    font-size: 30px;
}

@media only screen and (max-width:600px) {
    .add{
        height: 30px;
        width: 100px;
        font-size: 14px;
    }
    .cancel{
        height: 30px;
        width: 100px;
        font-size: 14px;
    }
    .rem{
        height: 30px;
        width: 80px;
        font-size: 10px;
    }
    .newTable{
        font-size: 15px;
        margin-left: 10%;
        padding: 7px;
    }
    input[type="text"],input[type="email"],input[type="number"]{
        padding: 3px;
        width: 160px;
        height: 25px;
        font-size: 14px;
        box-sizing: border-box;
    }
    thead{
        font-size: medium;

    }
    .exit td,.exit tr,.exit th{
        font-size: 12px;
        /* word-wrap: nowrap; */
    }
    .exit{
        margin:1% 4%;
    }
    h2{
        font-size: 20px;
    }
}