#hiddenContainer, #hiddenContainer2, #dialog {
    display: none;
}

.draggable {
    height: 120px;
    width: 200px;
}

.droppable {
    height: 120px;
    width: 200px;
    border: solid 2px black;
    margin: 5px;
}

html {
    background-color: rgba(150, 188, 231, 0.993);
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

#container, #beginning, #dropgame {   
    margin: 0 auto;
    padding: 50px;
    display: block;
    max-width: 500px;
    width: 100%;
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 10px -5px #909090;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

button {
    margin-left: 5px;
    margin-right: 5px;
}

#wrong, #right {
    font-weight: bold; 
    padding-top: 10px;
}

#flags {
    position: relative;    
    display: flex;    
    justify-content: center;
    align-items: left;
    gap: 6px;
}

#boxes {
    position: relative;    
    display: flex;    
    justify-content: center;
    align-items: right;
    gap: 6px;
}