@font-face {
    font-family: 'FFF_Galaxy';
    src: url(fonts/FFF_Galaxy.ttf);
    font-weight: normal;
    font-style: normal;
}

*,body{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    outline: none;
    color: #fbba00;
    font-family: 'FFF_Galaxy';
    font-size: 20px;
    transition: all 0.5s;
}
section{
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)) , url('../img/background-3.jpg') ;
    background-size: 100% 100%;
    display: grid;
    grid-template-columns: 0.99fr;
    grid-template-rows: 10vh 10vh 50vh;
    align-content: space-around;
    justify-content: space-evenly;
    transition: all 0.5s;
}

section>header{
    display: flex;
    align-items: center;
    justify-content:space-evenly;
}

#app {
    position: relative;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.5);
    font-size: 24px;
    box-shadow: 5px 5px 10px -5px #000;
    border-radius: 5px;
    overflow: hidden;
}

#logo {
    pointer-events: none;
    position: relative;
    z-index: 2;
    padding: 0.8% 0;
    width: 100%;
    text-align: center;
}

#logo img {
    transition: all 0.5s ease;
    width: 14%;
}

#logo.play-status img {
    width: 6%;
}

#container,
#container>div {
    width: 100%;
    height: 100%;
}

#container>div {
    padding-top: 50px;
    visibility: hidden;
    text-align: center;
    opacity: 0;
}

#container>div.action {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s ease;
}

#start-btn p:nth-child(2) {
    display: none;
}

#start-btn:disabled p:nth-child(1) {
    display: none;
}

#start-btn:disabled p:nth-child(2) {
    display: block;
}

#play {
    background: url('../img/background-6.gif');
    background-size: 100% 100%;
}

#canvas {
    z-index: 3;
    pointer-events: none;
}

.content {
    width: 100%;
    height: 100%;
}

.content .header {
    user-select: none;
    display: flex;
    justify-content: space-between;
}

.content .header ul {
    width: 45%;
    height: 50px;
    font-size: 20px;
}

.content .header li img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.content .header ul,
.content .header ul li {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.content .header .option img {
    cursor: pointer;
}

.content .header .option img:nth-child(2) {
    display: none;
}

.content .header .option li:active {
    opacity: 0.5;
}

.content .header .option li.active img:nth-child(1) {
    display: none;
}

.content .header .option li.active img:nth-child(2) {
    display: block;
}

#over .message { justify-content: space-around; align-items: center; display: flex; width: 50%;
    margin-left: 29%; }

#over .message img {
    width: 30px;
    height: 30px;
}

#over .message span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 20%;
}

#over .message span:nth-last-child(1) {
    width: 60%;
    padding-left: 4%;
    justify-content:  space-evenly;
}

#over input {
    border: none;
    border-radius: 3px;
    box-sizing: border-box;
    text-align: center;
    font-size: 1rem;
    width: 35%;
    margin: 0 auto;
    height: 30px;
    background-color: #191919;
}

table {
    max-height: 70%;
    overflow: hidden;
    display: table-column;
    align-items: center;
    justify-content: space-evenly;
}
th[scope="col"] {
  color: #f9f9f9;
  padding-top: 5%;
}