@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
main {
    background-color: rgb(49, 0, 82);
    padding: 1vw;
    /* width: 100vw; */
    height: 100vh;
}
header {
    background-color: rgb(49, 0, 82);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
}
.titlemain {
    font-size: 5vw;
    font-weight: 500;
    color:rgb(190, 164, 214)
}
.gridmain {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: repeat(5,1fr);
    gap: 1vw;
}
.item {
    width: 12vw;
    height: 10vh;
    background-color: rgba(137, 43, 226, 0.452);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid white;
}
.name {
    text-decoration: none;
    color: white;
}
.item:hover {
    background-color:  rgba(224, 211, 236, 0.363);
    transform: scale(1.1);
}
@media (max-width: 780px){
    .gridmain {
        display: flex;
        flex-wrap: wrap ;
        gap: 2vw;
        padding: 2vw;
        justify-content: center;
    }
    .item {
        width:20vw;
        height: 8vh;
    }
}