/* =================================== GENERAL STYLING ====================================*/

body {
  background-image: url('https://i.ibb.co/6tWj14C/Screen-Shot-2022-09-20-at-8-27-10-PM.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin: 0 auto;
  font-family: 'Amatic SC', cursive;
}

#heading{
  margin: auto;
  text-align: center;
  color: white;
  font-size: large;
  padding: 0px;
  font-size: 30px;
}

/* ================================== MAIN GAME STYLING ===================================*/

main {
  /* margin: 60px auto; */
  background-color: rgb(48, 0, 93, .96);
  height: 100vh;
  width: 1200px;
  border-radius: 50px;
  box-shadow: 0 0 30px 30px rgb(48,0,93);
}

#mainTable {
  margin: 40px auto;
  color: white;
  background-color: black;
  width: 1000px;
  height: 600px;
  padding: 15px;
  border: solid 4px lime;
  border-radius: 50px;
  table-layout: fixed;
  box-shadow: inset 0 0 40px greenyellow;
}
th {
  font-size: 30px;
}
th, td {
  border: solid 2px lime;
  text-align: center;
}

td>input {
  height: 100%;
  width: 100%;
  font-size: 30px;
  background-color: black;
  color:white;
  font-family: 'Rubik Dirt', cursive;
}
.mainBtn:hover{
  background-image: url('https://i.ibb.co/D8WrkHT/petro-kosariekov-portal-gun-rick-and-morty2-2.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  color:black;
  cursor: pointer;
}

footer {
  width: 1200px;
  color: white;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

#footDiv {
  font-size: 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
}

#footDiv>p>a, #footDiv>p {
  text-decoration: none;
  color: white
}

#footDiv>p>a:hover {
  color: lime;
  text-shadow: 0 0 5px lime;
}


/* =================================== QUESTION STYLING ====================================*/


#questionDiv {
  position: absolute;
  background-color: rgb(48, 0, 93);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: -30px;
  /* padding-top: 40px; */
  width:1200px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  box-shadow: 0 0 30px 30px rgb(48, 0, 93);
  visibility: hidden;
  justify-content: space-evenly;
}

#qCategory {
  color:white;
  /* height: 20%; */
  text-align: center;
  font-size: 60px;
  /* padding-top: 20px; */
}
#qQuestion{
  color: white;
  font-size: 40px;
  padding: 0 40px 0 40px;
  text-align: center;
}


#qTable{
  background-color: blueviolet;
  width: 1200px;
  height: 400px;
  table-layout:fixed;
}

#qTable>tr{
  overflow: hidden;
}

.answerBttn{
  background-color: black;
  color:white;
  word-wrap: normal;
}

.answerBttn:hover{
box-sizing: border-box;
width:100%;
border: solid 5px lime;
cursor: pointer;
}

#q-img{
  height:400px;
}

/* REACTION DIV */

#right-answer-react, #wrong-answer-react {
  background-color: black;
  color: white;
  width: 1200px;
  height: 100%;
  border-radius: 50px 50px 0 0;
  box-shadow: 0 0 50px 30px rgb(0, 0, 0);
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  visibility: hidden;
  position: absolute;
}

#right-answer-image, #wrong-answer-image{
  margin: auto;
  width: 75%;
  max-height: 75%;
}

#right-answer-p, #wrong-answer-p {
  padding-top: 40px;
  font-size: 30px;
}
#right-answer-react>h1, #wrong-answer-react>h1 {
  margin-bottom: 60px;
  font-size: 60px;
}

/* =================================== GAME OVER STYLING ===================================*/

#game-over-div {
    background-color: black;
    color: white;
    width: 1200px;
    height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: absolute;
    /* justify-content: space-between; */
    visibility: hidden;

}

#go-footer-div{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-right: 50px;
  padding-left: 50px;
  color: white;
  font-size:50px;
}

#game-over-p {
  font-size: 70px;
  margin-top: 0;
}

#go-footer-div {
  margin:0 auto;
  width:600px;
}
#go-footer-div>p>a {
  text-decoration: none;
  color: white;

}

#go-footer-div>p>a:hover{
  text-decoration: none;
  color: lime
}

#go-img{
  border-radius: 50%;
  height: 600px;
  width: 600px;
  object-fit: cover;
  box-shadow: 0 0 50px 30px yellowgreen;
}
