@font-face {
    font-family: 'Tondu';
    src: url('Tondu_Beta.ttf');
}

*{
    box-sizing: border-box;
}
body{
    background-image:url('images/Fond-etoile2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
}

.mx-auto{
    display: block;
    margin: 0 auto;
}

.logoMain{
    width:50%;
    margin-top: 30px;
}

img{
    width: 100%;
}

.titre{
    width:50%;
    margin-top: 50px;
    animation: float ease-in-out 2s infinite alternate;
}


.tombola-canvas{
    height: 50vh;
}

#canvas{
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: 0;
    top:0;
    left:0;
}

.main-container, header{
    position: relative;
    z-index: 2;
}


.btn-start{
    width: 100%;
    text-align: center;
    
}

.btn-start button{
    background-color: #D40000;
    color: white;
    font-family: 'Tondu';
    font-size: 40px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.398);
    padding: 20px 30px;
    border: none;
    border-radius: 100px;
    text-transform: uppercase;
    transition:.2s;
    cursor: pointer;
    border: 5px solid white;
}

.btn-start button:disabled{
    background-color: #7b0000;
    transform: scale(.95);
}



@keyframes float{
    from{
        transform: translateY(0);
    }
    to{
        transform: translateY(20px);
    }
}