@font-face {
	font-family: 'Uni_Neue_book';
	src: url('../fonts/UniNeueBook.woff2') format('woff2'),
		url('../fonts/UniNeueBook.woff') format('woff'),
		url('../fonts/UniNeueBook.ttf') format('truetype');
}

@font-face {
	font-family: 'Uni_Neue_bold';
	src: url('../fonts/UniNeueBold.woff2') format('woff2'),
		url('../fonts/UniNeueBold.woff') format('woff'),
		url('../fonts/UniNeueBold.ttf') format('truetype');
}

:root {
    --orange-msp: #ff5500;
    --taille-logo: 40px;
}

html, body {
    font-family: 'Uni_Neue_book';
    margin: 0;
    cursor: default;
    scrollbar-width: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#fullscreen {
    overflow-x: hidden;
    width: 100vw;
}

main {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.display-none {
    display: none !important;
}

a {
    text-decoration: none;
    color: black;
}

.bouton, .avis img, .ouvrir, #quitter {
    cursor: pointer;
}

.bouton {
    transition: transform 0.2s ease;
}

.bouton:not(.interdit):hover {
    box-shadow: -0.1rem 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
}

.centre {
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#fsbouton, #retour {
    margin: auto;
    color: var(--orange-msp);
    background-color: white;
    border: 2px solid var(--orange-msp);
    padding: 20px 30px;
    border-radius: 15px;
    width: fit-content;
    text-align: center;
}

.centre p {
    margin: auto;
    margin-bottom: 30px;
    width: 80vw;
    text-align: center;
}

.rotation-message {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
    font-size: 1.2rem;
    padding: 0 50px;
}

@media screen and (orientation: portrait) {
    .visible {
        display: flex;
    }
}

/* messages d'erreur */
.erreur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: red;
    z-index: 1000
}