html {
    height: 100%;
}

body {
    background-color: #F2BD00;
    height: 100%;
    margin: 0;
}

.container {
    min-height: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("assets/background.png");
    background-size: cover;
    position: relative;
}

.logo {
    width: 40%;
    max-width: 1126px;
    max-height: 198px;
}

/* Todo : gérer une sorte de overflow hidden quand un oeil dépasse de l'écran */
.eye {
    position: absolute;
    background-size: cover;
    width: 100px;
    height: 90px;
}

.yellow-eye {
    background-image: url("assets/Eye_02.png");
    left: 23%;
    top: 64%;
}

.yellow-eye:hover {
    background-image: url("assets/Eye_Yellow_02.png");
}

.grey-eye {
    background-image: url("assets/Eye_01.png");
}

.background {
    font-family: "Lucida Console", "Courier New", monospace;
    position: absolute;
    font-size: 2em;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    overflow: hidden;
}

.signature {
    position: absolute;
    bottom: 0;
}

.eye-text {
    font-size: 2rem;
}