*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}
.mainDiv{
    height: 100svh;
    width: 100svw;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.dc{
    height: 50svh;
    width: 70svw;
    /* border: 1px solid rgb(43, 183, 226); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.card{
    height: 200px;
    width: 200px;
    background-color: white;
    border-radius: 30px;
    align-content: center;
    text-align: center;
    font-size: 70px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: all 0.3s ease;
}
.card:hover{
    box-shadow: 0px 0px 30px red;
    transform: scale(1.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.dots{
    height: 200px;
    width: 40px;
    text-align: center;
    align-content: center;
    font-size: 90px;
}
.but{
    height: 100px;
    width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.tb{
    height: 70px;
    width: 150px;
    border: 2px solid white;
    border-radius: 10px;
    text-align: center;
    align-content: center;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tb:hover{
    transform: scale(1.03);
    box-shadow: 0px 0px 40px yellow;
    transition: all 0.3s ease;
}