@import url("https://fonts.googleapis.com/css2?family=Poller+One&display=swap");
body {
    /* Try the image in the same `styles/` folder first, then a project-level `images/` folder, then an external fallback */
    background-image: url('../images/woodtable.jpg'), url('https://images.unsplash.com/photo-1505692794405-7c5b1d8b1b9d?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-attachment: fixed;
    font-family: "poller one", sans-self;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;


}

.navbar, footer {
    position: fixed;
    display: flex;
    justify-content: center;
    color: rgb(94, 78, 57);
    padding: 15px 0;
    background-color: antiquewhite;
    width: 100%;
    left: 0;
    gap: 20px;
    padding: 10px 0;
    
}

.navbar { top: 0; border-bottom: 2px solid rgb(94, 78, 57); }
.footer { bottom: 0; border-top: 2px solid rgb(94, 78, 57); }


.nav-link, .footer a {
    color: rgb(94, 78, 57);
    margin-right: 20px;
    font-weight: 500;
    transition: color 0.3s;

}

.nav-link, .footer a:hover {
    color: rgb(94, 78, 57);
    text-decoration: underline;
}

h1 {
    color: rgb(94, 78, 57);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}


.btn {
    background-color: rgb(94, 78, 57);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border: 3px solid antiquewhite;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: block;
    margin: 0 auto;
}

.btn:hover {
    background-color: antiquewhite;
    color: rgb(94, 78, 57);
    transform: translateY(-3px); /* Small lift effect */
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.draggable-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

#draggable, #draggable2, #draggable3 { 
    width: 120px; 
    height: 80px; 
    cursor: grab;
    z-index: 100;
}    

img {
    width: 100%; 
    height: 100%; 
    border: 2px solid #333;
    border-radius: 4px;
    display: block;
    
}


#droppable { 
    width: 300px; 
    height: 150px; 
    padding: 0.5em; 
    margin: 10px; 
    background-color: antiquewhite;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 2px dashed #888;
}

