.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0 ;
    font-weight: 5000;
    z-index: 1000;
    
    

}
.foot{
    color: darkgoldenrod;
}
body{
    background: #360033;
    background: -webkit-linear-gradient(to right, #0b8793, #360033);
    background: linear-gradient(to right,#0b8793,#360033);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden

}
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;  
}
.logo{
    font-weight: bold;
    font-size: 25px;
    color: red;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
   
}
.digit{
    font-size: 150px;
    color: ;
}
.text{
    font-size: 30px;
}
.btn{
    font-size: 50px;
    font-weight: bold;
    width: 200px;
    padding: 10px 15px;
    margin: 0px 20px;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    border-radius: 15px;
    background-color: #F1F2B5;

}
button:hover{
    background-color: #2c3e50;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}