html{
    box-sizing: border-box;
    background-image: linear-gradient(to left top, #120537, #411054, #78126b, #b10e78, #eb127c);
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
    
}
*,
*::before,
*::after{
    box-sizing: inherit;
}
body{
    margin: 0;
    padding: 0;
}
.wrapper{
    width: 65%;
    margin: 3rem auto;
    align-items: center;
    overflow-x: auto;
}
table{
    width: 100%;
    border-collapse: collapse;
    height: 500px;
    background-image: linear-gradient(to left top, #067f78, #027464, #00be96, #09c482, #11f774);
    box-shadow: 0 0 20px #3d3d3d;
}
th{
    font-family: 'Roboto', sans-serif;
    font-weight: 600px;
    font-size: 1.5rem;
    color: #120537;
    height: 50px;
}
td{
    font-family: 'Nunito', sans-serif;
    color: rgb(243, 237, 226);
    border: 1px solid white;
    padding: 5px;
    height: 40px;
}
tr{
    color: rgb(243, 237, 226);
}
td:hover{
    background-color: #78126b;
}
.center{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 400px;
    font-size: 18px;
}
.orang{
    background-color: orangered;
}
.blue{
    background-color: darkblue;
}
.green{
    background-color: green;
}
caption{
    font-weight: bolder;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    padding-bottom: 30px;
}
@media only screen and (min-width:670px){
    .mobile-view{
        display: none;
    }
}
@media only screen and (max-width:660px){
    .desktop{
        display: none;
    }
    html{
        height: auto;
    }
    .wrapper{
        width: 80%;
        margin: 1rem auto;
    }
    table{
        height: 15px;
        border-collapse: collapse;
        background-image: linear-gradient(to right bottom, #0b020a, #220b19, #380a1d, #4f061b, #620710);
        margin-bottom: 15px;
    }
    th{
        color: rgb(243, 19, 19);
    }
    tr,td{
        border: none;
        padding: 20px;
    }
    td{
        border-bottom: 1px solid grey;
    }
}