/* Basic reset and body styling */
body {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #000; /* Black background */
    color: #00FF00; /* Green text */
}

/* Header styling */
header {
    background-color: #111; /* Slightly lighter black */
    color: #00FF00; /* Green text */
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #00FF00; /* Green border */
}

/* Main content styling */
main {
    padding: 20px;
}

section:hover {
    transform: scale(1.02); 
    border-color: rgba(15, 255, 80, 1);
    box-shadow: 0 0 10px rgb(15, 255, 80);
}

/* Challenge section styling */
.challenge {
    background-color: #111; /* Slightly lighter black */
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.3); /* Green shadow */
    border: 1px solid #00FF00; /* Green border */
}

.challenge h2 {
    margin-top: 0;
    color: #00FF00; /* Green text */
}


/* Shop section styling */
.shop {
    background-color: #111; /* Slightly lighter black */
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.3); /* Green shadow */
    border: 1px solid #00FF00; /* Green border */
	aligin: right;
}

.shop h2 {
    margin-top: 0;
    color: #00FF00; /* Green text */
}

/* Footer styling */
footer {
    background-color: #111; /* Slightly lighter black */
    color: #00FF00; /* Green text */
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 2px solid #00FF00; /* Green border */
}

/* Button styling */
button {
    background-color: #111; /* Slightly lighter black */
    color: #00FF00; /* Green text */
    border: 2px solid #00FF00; /* Green border */
    padding: 5px 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #00FF00; 
    color: #000; 
    transform: scale(1.05); 
}
button:active {
    background-color: #009900;
    color: #000; 
    transform: scale(0.95);
}

