@import url("progress.css");
@import url("buttons.css");
@import url("animations.css");
@import url("typography.css");
@import url("quiz.css");
@import url("greeting.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}



/* Disable Button Click */
.option-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Center the content */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    font-family: 'Poppins', sans-serif;
}

/* Quiz Result Container */
.result-container {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    width: 350px;
    animation: fadeIn 0.5s ease-in-out;
}

/* Heading */
.result-container h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

/* Score Styling */
.result-container h2 {
    font-size: 22px;
    color: #4CAF50;
    margin-bottom: 5px;
}

/* High Score */
.result-container h3 {
    font-size: 18px;
    color: #ff9800;
}

/* Message Styling */
#resultMessage p {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    color: #555;
}

/* Buttons */
button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #6e8efb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #a777e3;
    transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




