@import "theme.css"; 

body {
    background-color: var(--bg-color);
}

a {
    font-size: xx-large; 
}

#puzzle {
    background-color: var(--primary); 
    border-width: 8px;
    border-color: var(--primary-dark);
    height: fit-content; 
    width: fit-content;
}


#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#popup.hidden {
    display: none;
}

#popup-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: fit-content;
    width: fit-content;
}

#popup-content img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    
}

#close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

#win button {
    padding: 10px; 
    background-color: var(--primary);
    border-color: var(--primary-dark); 
    border-radius: 5px;
}

#win button:hover {
    background-color: var(--primary-dark);
}

#win button a{
    font-size: xx-large; 
    text-decoration: none;
    color: black;
}





#startbtn {
    font-size: xx-large;
    margin: 10px;
    padding: 5px;
    border-radius: 20%;
}