*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
:root {
    --bgColor: #07011c;
    --fontColor: #e1ff00;
}
@font-face {
    font-family: "star jedi";
    src: url(../font/starjedi/Starjhol.ttf);
}
@font-face {
    font-family: "star";
    src: url(../font/starjout/Starjout.ttf);
}

body {
    font-size:25px;
    color:black;
    background-image: url(./images/Saga-Star-Wars.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: bg 1s infinite alternate linear;
    text-shadow: 0px 0px 12px #e5ff00;
    margin-top:10vh;

}
h1,h2,h3{
    text-align:center;
    text-transform:uppercase;

}
game{
    display:block;
    margin:2em auto;
    width:400px;
    height:400px;
    position:relative;
    border-radius:10px;
    overflow:hidden;
    border: 2.5px solid #fffb00;
    box-shadow: 0px 0px 20px #000000;
    background-color: #000000;
}
pit{
    display:block;
    width:100px;
    height:100px;
    position:absolute;
    left:0px;
    top:0px;
    background-position: center;
    background-size: 100%;
    transition: transform .5s, background-size .5s;
    background-repeat: no-repeat;
}
a{
    color:yellow;
}
pit[y="1"]{
    top:100px;
}
pit[y="2"]{
    top:200px;
}
pit[y="3"]{
    top:300px;
}
pit[x="1"]{
    left:100px;
}
pit[x="2"]{
    left:200px;
}
pit[x="3"]{
    left:300px;
}

pit[status="taupe"]{

    background-image: url(./images/jar-jar.png);
background-size: 100;
}
pit[status="mort"]{
    
background-image: url(../images/jar-jar.png);
background-size: 0;
}
pit[status="manquer"]{
    background-image:url(../images/solo-a-star-wars-story-photo-faucon-millenium-1013358.jpg);
background-size: 0;
}