*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 90px;
    font-size: 35px;
    cursor: pointer;
}

body{
    background-color: rgb(82, 82, 82);
}


.h1{
    color: rgb(128, 139, 143);
}

.digit{
    color: rgb(63, 207, 255);
    font-weight: bold;
    font-size: 100px;
    padding: 20px;
    
}

.txt{
    font-size: 15px;
    font-weight: bold;
    color: rgb(187, 179, 179);
} 

.btn{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.btn_1{
    padding: 15px;
    border-radius: 25px;
    color: rgb(42, 60, 67);
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    border: none;
}

.btn_1:hover{
    background-color: rgb(190, 198, 198);
}