* { box-sizing: border-box; }
html {
    font-size: 100%;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9em;
    color: #ececec;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: #000000;
}
#root {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 2rem;
}
#root * { text-align: center; }
.textes {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-in-out;
}
.anim_textes {
    transform: translateY(0);
    opacity: 1 !important;
}
.anim {
    transform: scale(1) !important;
    opacity: 1 !important;
}
.logo {
    opacity: 0.1;
    transform: scale(0.9);
    transition: all 0.5s linear 0.5s;
}
.construc {
    color: green;
}