*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    height: 100vh;
    flex-direction: column;
width: 100vw;
background: rgb(1, 10, 15);
}
    .navbar{
        display: flex;
        gap: 50em;
justify-content: center;
align-items: center;
padding: 10px;
flex-direction: row;
width: 100%;   
}
    .navbar .link.show{
        overflow: hidden;
        display: block;
    }
    .navbar .heading.show1{
        
        display: block;

    }
    .navbar .link{
        display: flex;
display: none;    
gap: 80px;
overflow: hidden;
}
    .navbar .link a{
        text-decoration: none;
        color: #333;
        font-weight: 600;
        overflow: hidden;
        transition: ease-in-out 0.9s;
    position: relative;
    }
    .navbar .heading{
        display: flex;
        display: none;
    }
    .navbar .heading p{
        display: flex;
        background: yellow;
        padding: 10px;
        font-size: 1.5em;
        border-radius: 10px;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 20px;
        text-align: center;
    }
    .navbar .link a::after{
        content: '';
        bottom: -3px;
        left: 0;
        background: rgb(243, 92, 5);
        width: 0vw;
        height: 5px;
        position: absolute;
        border-radius: 10px;
        transition: ease-in-out 0.6s;
    }
    .navbar .link a:hover::after{
        width: 100%;
    }
.container{
    display: flex;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
color: white;
background: rgb(1, 10, 15);
}
.container h1{
    animation: bounce 5.5s ease-in-out  infinite;

}
 @keyframes bounce {
      0% {
        transform: translateY(0);
      }
      25% {
        transform: translate(-30px);
      }
      50% {
        transform: translateY(0);
      }
      75% {
        transform: translateY(-15px);
      }
      100%{
        transform: translate(-50px);
      }
    }

.maintable{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 50px;
    display: none;
    
}
.maintable table{
    padding: 5px;
}
.maintable table tr td{
    padding: 6px;
}
.dark{
    background: rgb(9, 71, 71);
    
}
.blue{
    background: rgb(44, 18, 18);
}
.green{
    background: rgb(24, 63, 24);
}
.sky{
background-color: rgb(23, 9, 4);
}
.orange{
    background: rgb(25, 10, 25);
}
.yellow{
    background:rgb(47, 47, 10);
}
.pink{
    background:rgb(28, 7, 11);
}
.a{
    background:rgb(40, 17, 21);

}
.b{
    background:rgb(37, 7, 12);

}
.c{
    background:rgb(50, 8, 72);
}
.d{
    background:rgb(24, 61, 34);
}
.e{
    background:rgb(127, 96, 39);
}
.f{
    background:rgb(13, 25, 6);
}
.g{
    background:rgb(11, 25, 52);
}
.h{
    background:rgb(37, 2, 33)
}
.i{
    background:rgb(86, 27, 9);
}
.j{
    background:rgb(11, 62, 19);
}
td{
    background: rgb(38, 50, 16);
    text-align: center;
    color: white;
}


