#container {
    display: flex;
    justify-content: space-around;
}


#game-container {
    position: relative;
    
}

.gamecontainerClass {
    width: 100%;   
    height: 100%;
    /* You can also use other units like percentages, em, rem, etc. */
}

#message {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    display: flex;
    font-size: 35px;
    flex-direction: row;
    position: inherit;
    margin-top: 20px;
    align-items: center;
}

/* Add some styling to the config container */
#config-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-direction: column;
    width: auto;
}

/* Style for each configuration item (dropdown or button) */
.config-item {
    margin: 0 10px;
    text-align: center;
    margin-bottom: 10px;
    flex-direction: row;
    display: flex;
}

/* Style for labels */
label {
    display: flex;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-right: 20px;
}

/* Style for dropdown lists */
select {
    padding: 8px;
    font-size: 14px;
}

/* Style for the button */
button {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Hover effect for the button */
button:hover {
    background-color: #45a049;
}
/* Style for the info container */
#info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    width: 500px;
    flex-direction: column;
}

/* Style for the moves counter */
#moves-counter {
    display: flex;
    font-size: 16px;
    flex-direction: row;
}

/* Style for the credits */
#credits {
    margin-top: 100px;
    font-size: 12px;
    color: #000732;
    width: 400px;
    font-style: italic;
}

#message {

}
