body {
    display: flex;
    flex-direction: column;
    margin: 0;
    height: 100vh;
    font-family: 'Varela Round';font-size: 22px;
    color: rgb(203, 200, 196);
    background-color: black;

    /*Adding a background photo*/
    background-image: url('LeafBackground.jpg'); 
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
}

footer {
    flex: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 2em;
    color:rgb(70, 165, 33);
}

/* Class Specific Style */
.navbar {
    border-bottom: 2px solid rgb(00,00, 00)
}

.nav-link {
    color: rgb(203, 200, 196);;
}

.nav-link active {
    color:rgb(203, 200, 196);;
}

.navbar-brand {
    font-size: 1.5em;
    color:rgb(65, 151, 30);
}

.navbar-toggler {
    border: 3px solid #000000;;
}

.top-display {
    flex: 0 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    background-color: rgb(109, 108, 106, 0.5);
    margin-bottom: 1em;
}

.btn {
    border: 2px solid rgb(197, 189, 189)
}

.game-header {
    background-color: rgba(62, 62, 61, 0.7);
    border-radius: 8px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-self: center;
    margin-bottom: 8px;
}

.game {
    font-size: 30px;
    justify-content: center;
    align-content: center;
    margin-bottom: 12px;
  }
  
  .game table {
    width: 100%;
  }
  
  .game table tr {
    height: 2em;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 0em;
  }
  
  .game table td {
    padding: 1px;
  }
  
  .game table input[type="text"] {
    width: 100%;
    height: 90%;
    box-sizing: border-box; 
    border-radius: 6px;
    background-color: rgb(109, 108, 106, 0.5);
    text-align: center;
  }

  .game table tr.curr-answer input[type="text"] {
    background-color: rgba(109, 106, 108, 0.9);
  }

  .game table tr.disabled-row input[type="text"] {
    color: rgb(236, 236, 236);
    transition: color 0.3s ease;
  }

  .game table input#yellow {
    background-color: rgb(218, 174, 54);
    filter: brightness(0.8);
    transition: background-color 0.3s ease;
  }

  .game table input#green {
    background-color: rgb(65, 151, 30);
    filter: brightness(0.8);
    transition: background-color 0.3s ease;
  }

  .game table input#grey {
    background-color: rgb(65, 65, 65);
    filter: brightness(0.8);
    transition: background-color 0.3s ease;
  }

  .reset-button {
    display: flex;
    justify-content: center;
    align-content: center;
  }

  .game table tr.correct-guess input[type="text"] {
    color: rgb(78, 182, 36);
    background-color: rgb(48, 48, 48);
    font-weight: bold;
    transition: background-color 0.3s ease, color 1s ease, font-weight 1.5s ease;
  }
  
  .player-score {
    display: flex;
    align-items: center;
  }

  .curr-score {
    justify-self: center;
    padding-left: 20px;
    padding-right: 6px;
    margin-bottom: 0;
  }