body{
    background-color: rgb(0, 0, 0);
    margin: 0px;
    z-index: -1;
    color: white;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    width: 1360px;
    position: fixed;
    z-index: 100;
    border-bottom: 2px solid  rgb(255, 255, 255);
    text-shadow: 0 5px 10px white;
}
@media screen and (max-width:1100px){
    .header{
        width: 1100px;
    }
}
@media screen and (max-width:950px){
    .header{
        width: 950px;
    }
}
@media screen and (max-width:900px){
    .header{
        width: 900px;
    }
}
@media screen and (max-width:850px){
    .header{
        width: 850px;
    }
}
@media screen and (max-width:800px){
    .header{
        width: 800px;
    }
}
@media screen and (max-width:750px){
    .header{
        width: 750px;
    }
}
@media screen and (max-width:700px){
    .header{
        width: 700px;
    }
}
@media screen and (max-width:650px){
    .header{
        width: 650px;
    }
}
@media screen and (max-width:600px){
    .header{
        width: 600px;
    }
}
@media screen and (max-width:550px){
    .header{
        width: 550px;
    }
}
@media screen and (max-width:500px){
    .header{
        width:500px;
        font-size: small;
    }
}
@media screen and (max-width:450px){
    .header{
        width: 450px;
    }
}
@media screen and (max-width:415px){
    .header{
        width: 415px;
    }
    .header{
        font-size: small;
    }
}
@media screen and (max-width:375px){
    .header{
        width: 375px;
    }
    .header{
        font-size: small;
        text-align: center;
    }
}
@media screen and (max-width:343px){
    .header{
        width: 343px;
    }
    .header{
        font-size: small;
        text-align: center;
    }
}
.content{
    display: flex;
    justify-content: center;
    color: rgb(255, 255, 255);
}
@media screen and (max-width:360px){
    .content{
        font-size: small;
    }
    
}
.tableX{
    display: flex;
    justify-content: center;
    margin-top: -30px;
}
.list{
    display: flex;
    justify-content: space-around;
    transition: all 0.40s;
    border-radius: 50px;
}
.list, a{
    text-decoration: none;
    color: white;
}
.list:hover{
    box-shadow: 0 0 50px rgb(255, 255, 255);
}
.li1, .li2, .li3 {
    background-color:black;
    color: rgb(255, 255, 254);
    border: none;
    border:1px solid rgb(255, 255, 255);
    border-radius: 100px;
    margin: 10px;
    font-weight: 600;
    font-size: medium;
    transition: all 0.40s;
}
.li1{
    padding: 10px 30px;
}
.li2{
    padding: 10px 30px;
}
.li3{
    padding: 10px 40px;
}
.li1:hover,.li2:hover,.li3:hover{
    box-shadow: inset  0 0 30px rgb(255, 255, 255);
}
.li1:active,.li2:active,.li3:active{
    background-color: rgb(255, 255, 255);
    color: black;
}