body {
    height: 100vh;
    background-color: #FDCA40;
    color: #073B3A;
    font-family: 'Source Code Pro', monospace;
}

#wrapper {
    background-image: url('../resources/house.png');
    background-repeat: no-repeat;
    background-size: contain;  /* Show entire image */
    background-position: center;
    height: 50vh;               /* Only half the viewport height */
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 100px 40px;        /* Adjust as needed to place bulbs inside */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }  

.lights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.lightbulb {
    font-size: clamp(2rem, 10vw, 5rem); /* Responsive font size */
    background: #073B3A;
    padding: 0px;
    border-radius: 12px;
    box-shadow: 0 0 25px white;
    text-align: center;
    font-size: 80px;
    text-align: center;
    transition: 0.2s;
    margin: 0px;
}

h1, h2, p {
    text-align: center;
}

.top-floor {
    padding-top: 25vh;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.bottom-floor {
    padding-top: 25px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

/* Add this to your CSS */
.projects-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #073B3A;
    color: #FDCA40;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000; /* Ensures it stays above other content */
}

.projects-button:hover, button:hover {
    background-color: #0a5250;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.projects-button:active, button:active {
    transform: translateY(1px);
}

a {
    color: white;
}

select {
    font-family: 'Source Code Pro', monospace;
}

button {
    font-family: 'Source Code Pro', monospace;
    color: white;
    background-color: #073B3A;
    color: #FDCA40;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;

}

#tasks, #questions {
    margin: auto 10vw;
}

#questions {
    padding-bottom: 5vh;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .projects-button {
        padding: 8px 16px;
        font-size: 0.9rem;
        bottom: 15px;
        right: 15px;
    }
}