* {
    font-family: 'Montserrat', sans-serif;;
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}
body {
    background: url('../assets/Live-Wave-Background.svg') no-repeat;
    background-size: cover;
}
header {
    height: 10%;
    margin-top: 40px;
}
main {
    height: 90%
}

h4, h5 {
    text-align: center;
}

h4 {
    font-size: 22px;
}

h5 {
    text-transform: capitalize;
    font-size: 16px;
}

.top-header h1 {
    text-align: center;
}
.top-header p {
    text-align: center;
    font-weight: 700;
}

#jeopardyBoard {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: auto 30px;
}

#categoryRow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    height: 16%;
}

#questionRow {
    display: flex;
    height: 84%;
    margin: 18px 0;
}

.question-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 18px;
    height: 90%;
}

.cell {
    width: 100%;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 18px;
    background: #fff;
    font-weight: 700;
    box-shadow: 3px 4px 12px rgb(0 0 0 / 20%);
}


#categoryRow .cell {
    padding: 0 15px;
    font-size: 20px;
    text-transform: uppercase;
    word-break: break-word;
}

.cell.question {
    margin: 18px 0;
    font-size: 2.3rem;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
}

.cell.question:hover {
    background: lightgoldenrodyellow;
    transform: scale(1.1)
}

.cell.question.disabled-wrong {
    background: lightcoral;
    pointer-events: none; 
    box-shadow: none;
}

.cell.question.disabled-correct {
    background: lightgreen;
    pointer-events: none; 
    box-shadow: none;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 15px;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 700px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation: animatetop;
    animation-duration: 0.4s
  }

  .modal-content h3 {
    text-align: center;
    font-size: 1.5rem;
}

/* Add Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
  }
  

   
  /* The Close Button */
  .close {
    color: #000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    display: none;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /*FORM*/
form {
    text-align: center;
}
button {
    background: #fff;
    border: 1px solid #000;
    padding: 6px 20px;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    padding: 6px 30px;
}

input[type="text"] {
    border: 1px solid #262626;
    padding: 6px 15px;
    background: #262626;
    color: #fff;
}

  label {
    display: block;
    margin-bottom: 20px;
}

.finish-btn, .newGame-btn {
    margin: 30px auto;
    display: block;
}


/* Add Animation */
@keyframes animatetop {
  from {top: -300px; opacity: 0}
  to {top: 0; opacity: 1}
}