* {
    touch-action: none;
}

html {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-image: url("img/stars.jpg");
    position: relative;
}

#container {
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    grid-template-rows: 33.3% 33.3% 33.3%;
    width: 100%;
    height: 100%;
}

#rocket {
    width: 64px;
    height: 112px;
    grid-area: 2 / 2;
    align-self: center;
    justify-self: center;
}

#rocketThrust {
    width: 64px;
    height: 112px;
    grid-area: 2 / 2;
    align-self: center;
    justify-self: center;
    display: none;
}

#boom {
    grid-area: 2 / 2;
    align-self: center;
    justify-self: center;
    display: none;
}

#win {
    grid-area: 2 / 2;
    align-self: center;
    justify-self: center;
    display: none;
}

#tiltCrash {
    grid-area: 1 / 2;
    align-self: center;
    justify-self: center;
    display: none;
    color: red;
    align-items: center;
    justify-content: center;
}

#speedCrash {
    grid-area: 1 / 2;
    align-self: center;
    justify-self: center;
    display: none;
    color: red;
    align-items: center;
    justify-content: center;
}

#youWin {
    grid-area: 1 / 2;
    align-self: center;
    justify-self: center;
    display: none;
    color: green;
    align-items: center;
    justify-content: center;
}

#left {
    background: radial-gradient(green, transparent);
    border-radius: 50%;
    grid-area: 3 / 1;
    align-self: stretch;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

#right {
    background: radial-gradient(red, transparent);
    border-radius: 50%;
    grid-area: 3 / 3;
    align-self: stretch;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

#middle {
    background: radial-gradient(orange, transparent);
    border-radius: 50%;
    grid-area: 3 / 2;
    align-self: stretch;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#ground {
    z-index: -1;
    width: 100%;
    position: absolute;
}

h1 {
    text-align: center;
}
