@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/*Pour la vidéo*/
.background-video{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index: -1;
}
.video-control-button {
    display: inline-block;
    background-color: #b71c1c;;
    border: none;
    color: white;
    padding: 30px; 
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    border-radius: 50%; 
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1;
    position: fixed; 
    bottom: 50px; 
    right: 20px;
    width: 80px; 
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.video-control-button:hover {
    background-color:rgb(100, 0, 0);
    transform: scale(1.05); 
}

/* Utilisation pour les écrans de 768px */
@media (max-width: 768px) {
    .video-control-button {
        width: 50px;
        height: 50px;
        font-size: 7px; 
        bottom: 15px;
        right: 15px;
    }
}
img{
    z-index:1;
    position: fixed;
    top: 15%; 
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: auto;
}
/* Design des boutons*/
a{
    display: inline-block;
    background-color: #b71c1c;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    z-index:1;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    border-radius: 10px;
    border: solid 1px  #b71c1c;
    padding: 20px 15px;
    cursor:pointer;
    transition: background-color 0.3 ease;
}

a:hover{ 
    background-color: rgb(100, 0, 0);
    border: solid 1px  rgb(100, 0, 0);
}

a:active{
    background-color: rgb(152, 42, 23);
}

.center-container{
    display:flex; 
    justify-content: center;
    align-items:center;
    height: 100vh;
}
.button-container {
    display: flex;
    gap: 20px;
}
.bottom-center{
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform:translateX(-50%);
    text-align: center;

}
/*design de ma page*/
.body{
    margin:0;
    padding:0;
    height:100%;
    width: 100%;
}
.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align:center;
    color: black;
    padding: 10px 0;
}
.footer p {
    margin: 0;
    text-align:center;
}
