body {
    font-family: Arial, sans-serif;
    padding: .5rem;
    background-color: #f0f8ff;
    display: flex;
    justify-content: center;
    background-image: url('https://infotechorlando.com/imposter-syndrome/happy.PNG'); 
    background-repeat: repeat;
}

.container {
    max-width: 800px;
    padding: 2rem;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    padding-top: .5rem;
}

h1 {
    font-size: 1.5em;
    text-align: center;
    color: #333;
    margin-bottom: .20em;
    margin-top: .1em;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
}

.start-btn, .answer-btn, .nav-btn {
    background-color: #4CAF50;
    margin: 1rem;
}

.reset-btn {
    background-color: #f44336;
    margin: 2rem auto;
}

button:hover {
    opacity: 0.9;
}

button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

#professor-hawk {
    color: black;
}


#description, #scenario, #feedback, #strategy {
    color: #4169E1; 
}

#instruction, #scenario, #feedback, #strategy, #professor-hawk-content {
    margin-top: 2rem;
    line-height: 1.6;
    font-size: 1.5em;
}

#strategy-section {
    padding: 1em;
    border-radius: 5px;
    background-color: #f0f8ff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.nav-buttons {
    justify-content: space-between;
    display: flex;
    margin: 2rem 0;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.blink {
    animation: blink 1s linear infinite;
}

.answer-btn {
    display: none;
}

.rotate-text {
    animation: rotate 2s linear 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
