@font-face {
    font-family: "Christmas";
    src: url("./assets/fonts/ChristmasTime.woff2") format("woff2"),
        url("./assets/fonts/ChristmasTime.woff") format("woff"),
        url("./assets/fonts/ChristmasTime.eot") format("woff");
}

:root {
    /* --color-blue: #000; */
    --color-blue: #010038;
    /* --color-blue: #000035; */
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background: var(--color-blue);
    font-family: "Christmas", "Arial", sans-serif;
    /* font-family: "Noto Sans", sans-serif; */
    overflow: hidden;
}

.full {
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--color-blue);
    color: #fff;
}

.mobile {
    display: none;
    z-index: 9;
    text-align: center;
    background: var(--color-blue);
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 20px;
    font-family: "Noto Sans", sans-serif;
}

.explications {
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    font-family: "Noto Sans", sans-serif;
}

.explications div {
    margin: 0;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.explications p {
    margin: 0;
}

.explications i {
    font-size: 16px;
}

.explications span {
    border: solid 1px #fff;
    padding: 8px 10px;
    margin: 2px;
}

.explications img {
    display: block;
    margin: 0 auto;
    width: 60px;
}

.explications h1 {
    font-weight: normal;
    font-family: "Christmas", "Arial", sans-serif;
    margin-bottom: 100px;
}

.explications .startButton {
    background: none;
    color: #fff;
    font-size: 30px;
    display: inline-block;
    margin-top: 100px;
    border: solid 2px #fff;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    padding: 8px 30px;
    transition: all 0.25s ease;
    font-family: "Christmas", "Arial", sans-serif;
}

.explications .startButton:hover {
    color: var(--color-blue);
    background: #fff;
    transform: scale(1.1, 1.1);
}

.loader {
    z-index: 2;
}

.loader p {
    margin: 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    text-align: center;
    font-size: 40px;
    font-family: "Christmas", "Arial", sans-serif;
}

@media screen and (max-width: 640px) {
    .mobile {
        display: flex;
    }
}
