:root {
    --mulish: "Mulish", sans-serif;
    --museo: "MuseoModerno", sans-serif;
}

.redirection-frame {
    display: grid;
    place-items: center; /* Centre horizontalement et verticalement */
    height: 25vh;   /* Prend toute la hauteur de la fenêtre */
    margin: 0;
    font-family: var(--museo);
    position: relative;
    top: 290px;
    padding: 0 20px;
    text-align: center;
}

.redirection-frame img {
    width: 100%;
    max-width: 500px;
    height: auto;
    background-size: cover;
    display: block;
}

.BUTTON {
    color: white;
    background-color: #bd6331;
    border-radius: 5px;
    width: 150px;
    height: 40px;
    font-size: 16px;
    border: 1px solid #ffffff;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-family: var(--mulish);
    transition: all 0.2s ease;
    margin-top: 15px;
}

.BUTTON:active {
    color: #bd6331;
    background-color: white;
    border-color: #bd6331;
    transform: scale(0.97); 
}

.tip {
    font-size: 17px;
}

/*ADAPTATION POUR MOBILE */
@media screen and (max-width: 768px) {
.redirection-frame {
    display: grid;
    place-items: center; /* Centre horizontalement et verticalement */
    height: 25vh;   /* Prend toute la hauteur de la fenêtre */
    margin: 0;
    font-family: var(--museo);
    position: relative;
    top: 400px;
    padding: 0 20px;
    text-align: center;
}

    body{
        overflow: hidden;
    }

    .BUTTON {
        width: 100%;
        max-width: 250px;
        font-size: 18px;
        height: 50px;
    }

    .tip {
        font-size: 35px;
    }
}
