body {
    font-family: Arial, sans-serif;
   
}

.container h1{
    color: white;
    font-weight: bold;
    font-size: 4rem;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.container h4{
    margin-top: 100px;
    color: rgb(255, 0, 0);
    font-weight: bold;
    font-size: 2rem;
}


.hero-image{
     background-image:url("image2.jpg");
    /* height: 1080px; */
    background-repeat: no-repeat;
    background-size: 2160px;
}

/* Styling for question listing */
.question-container {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 10px;
}

/* Question button styling */
.question-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 10px;
    margin-bottom: 10px;
    cursor: pointer;
    width: 90%; /* Make the buttons take full width of the container */
    font-size: 4.3rem; /* Increase the font size */
    font-weight: bold; 
}

/* Disabled question button */
.question-button.disabled {
    background-color: #595c5d; /* Greyed out */
    color: #383b3b; /* Darker grey text */
    cursor: not-allowed; /* No pointer cursor */
}

.question-button:hover:not(.disabled) {
    background-color: #2980b9;
}

/* Refresh button styling */
.refresh-button {
    background-color: #34495e;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
}

.refresh-button:hover {
    background-color: #2c3e50;
}

/* Custom styles for question details */
.question-details {
    background-color: #f8f9fa; /* Light background color */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    min-height: 200px; /* Minimum height for better appearance */
}

/* Larger text for question details */
.question-text {
    font-size: 3rem; /* Adjust font size as needed */
    font-weight: bold;
}

.answer-text{
    font-size: 3rem; /* Adjust font size as needed */
    font-weight: bold;
}
/* Answer button styling */
.answer-button {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.5rem; /* Adjust font size */
}

.answer-button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

/* Back button styling */
#back-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.8rem;
}

.back-button:hover {
    background-color: #c0392b;
}

#timeCount {
    font-size: 2.5rem;
    margin-bottom: 20px; 
    color: rgb(255, 136, 0);
    font-weight: bold;
}

#confirm {
    display: none;
    background-color: #b6b6b6;
    color: #000000;
    border: 1px solid #aaa;
    position: fixed;
    width: 600px;
    height: 240px;
    left: 32%;
    top: 35%;
    box-sizing: border-box;
    text-align: center;
 }
 #confirm button {
    background-color: #FFFFFF;
    display: inline-block;
    border-radius: 12px;
    border: 4px solid #aaa;
    padding: 5px;
    text-align: center;
    width: 60%;
    cursor: pointer;
    font-size: 2rem;
 }
 #confirm .message {
    text-align: center;
    margin-top: 20px;
    font-size: 4rem;
 }

.dataBtn button{

    font-size: 1rem;
}

#question-details p {
    font-size: 4rem;
}

#question-details h1 {
    font-size: 4rem;
    color: black;
    margin-bottom: 30px;
}
 