body {
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

p,
a {
    font-family: "Perfect DOS VGA 437";
    font-size: 1.5vw;
}

a {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.choice-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    width: 50%;
    height: auto;
}

.choice {
    padding-left: 5%;
    padding-right: 5%;
    color: red;
    text-decoration: none;
}

a {
    color: red;
    text-decoration: none;
}

.choice:hover {
    color: black;
    background-color: red;
}

.txt-container {
    display: flex;
}

.user-loader {
    color: red;
    font-family: "Alagard";
}

.txt-loader {
    color: red;
}

.center {
    width: 40%;
    height: 40vw;
    border: rgb(255, 0, 0) 2px solid;
    box-shadow: 0px 0px 2px 1px rgba(255, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 2px 1px rgba(255, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 2px 1px rgba(255, 0, 0, 0.75);
}

.center-img {
    width: 100%;
    user-select: none;
    -webkit-user-drag: none;
    height: 100%;
}

/* CHEMINS DIV */

.controller {
    z-index: 3;
}

.clicable {
    z-index: 5;
}

.clicker {
    position: relative;
    width: 100%;
    height: 80%;
    bottom: 100%;
}

.forward {
    position: relative;
    width: 100%;
    height: 80%;
    bottom: 100%;
}

.donnie {
    z-index: 5;
    position: relative;
    width: 20%;
    height: 20%;
    top: -160%;
    left: 35%;
    cursor: url("../cursor/hand.cur"), auto;
    animation: vhs-tremble 0.2s infinite;
}

.backward {
    position: relative;
    width: 100%;
    height: 20%;
    bottom: 101%;
}

.visible {
    display: flex;
}

.invisible {
    display: none;
}

.hidden {
    visibility: hidden;
}

.door {
    position: relative;
    z-index: 5;
}

.computer {
    position: relative;
    width: 60%;
    height: 60%;
    bottom: 170%;
    left: 1%;
}

.paranoid {
    position: relative;
    width: 15%;
    height: 15%;
    bottom: 190%;
    left: 77%;
}

.chambre {
    position: relative;
    width: 20%;
    height: 40%;
    bottom: 190%;
    left: 40%;
}

.cuisine {
    position: relative;
    width: 24%;
    height: 60%;
    bottom: 230%;
    left: 67%;
}

.dark {
    position: relative;
    width: 9.5%;
    height: 40%;
    bottom: 275%;
    left: 1%;
}

/*  COMPUTER */

.computer-view {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: rgb(255, 0, 0) 2px solid;
    box-shadow: 0px 0px 2px 1px rgba(255, 0, 0, 0.75);
    -webkit-box-shadow: 0px 0px 2px 1px rgba(255, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 2px 1px rgba(255, 0, 0, 0.75);
    width: 40%;
    height: 40vw;
}

.quit-computer {
    position: relative;
    width: 5%;
    height: 5%;
    top: -93%;
    right: -45%;
}

.computer-txt {
    text-align: center;
    font-family: "Alagard";
    color: red;
}
h1.computer-txt {
    font-size: 5vw;
}

h2.computer-txt {
    font-size: 2vw;
}

.custom-input {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.custom-input input[type="text"] {
    width: 30%;
    height: 5vw;
    font-size: 5vw;
    text-align: center;
    font-family: "Perfect DOS VGA 437";
    border: 2px solid red;
    background-color: black;
    color: red;
    outline: none;
}

.custom-input input[type="text"]::placeholder {
    color: red;
}

#submit {
    width: 30%;
    height: 5.45vw;
    font-size: 2vw;
    font-family: "Perfect DOS VGA 437";
    border: 2px solid red;
    background-color: black;
    color: red;
    outline: none;
}

#submit:hover {
    background-color: red;
    color: black;
}

@keyframes psycho-shade {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-1px, 0);
    }
    50% {
        transform: translate(2px, 0);
    }
    75% {
        transform: translate(-0.5px, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes vhs-tremble {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-0.5px, 0);
    }
    50% {
        transform: translate(0.5px, 0);
    }
    75% {
        transform: translate(-0.5px, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}
