#counter {
    /* position: absolute; */
    top: 10px;
    right: 10px;
    padding: 10px;
    margin-bottom: 20px;
    /* background-color: rgba(255, 255, 255, 0); */
    /* border: 1px solid #000; */
    z-index: 3;
}

#container {
    background-image: url("../images/background.JPG");
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1280px;
    height: 720px;
    border: 2px solid #ffffff;
}

.draggable-container {
    margin-top: 2%;
    /* position: absolute; */
    width: 9%; /* Size adjust */
    height: 100%;
    text-align: center;
    z-index: 2;
    cursor: move;
    /* top: 20px; top position */
    /* left: 400px; left position */
}

.draggable {
    width: 100%;
    height: 50%; /* Size adjust */
}

label {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #000;
    background-color: white;
    padding: 2px;
    border-radius: 3px;
}

#draggable-objects{
    height: 30%;
    display: flex;
    justify-content: center;
}

#dropboxes{
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.dropbox {
    /* position: absolute; */
    width: 10%;
    height: 100%;
    z-index: 10;
}

.dropbox-img {
    width: 100%;
    height: 100%;
    z-index: 10;
    object-fit: cover;
}

/* dropbox position */
/* #dropbox1 {
    bottom: 10px;
    left: -10px;
}
#dropbox2 {
    bottom: 10px;
    left: 102px;
}
#dropbox3 {
    bottom: 10px;
    left: 214px;
}
#dropbox4 {
    bottom: 10px;
    left: 326px;
}
#dropbox5 {
    bottom: 10px;
    left: 438px;
}
#dropbox6 {
    bottom: 10px;
    left: 550px;
}
#dropbox7 {
    bottom: 10px;
    left: 662px;
}
#dropbox8 {
    bottom: 10px;
    left: 774px;
} */

#congratulations-message {
    /* position: fixed; */
    display: flex;
    justify-self: center;
    /* transform: translate(-50%, -50%); */
    /* background-color: rgb(116,153,179); */
    color: black;
    /* border: 2px solid #000; */
    /* padding: 10%!important; */
    margin-top: 20px;
    font-size: 24px;
    text-align: center;

}

#waste-disposal-game{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#instructions{
    margin-top: 20px;
    text-align: center;
}

#start-game-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

#waste-rules {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 720px;
}

#waste-rule-img{
    height: 100% !important;
}

@media screen and (max-width: 1280px) {
    #container{
        width: 720px;
		height: 405px;
    }

    #waste-rules{
        height: 405px;
    }

    label {
        font-size: 10px;
    }
}

@media screen and (max-width: 736px) {
    #container{
        width: 444px;
		height: 250px;
    }

    #waste-rules{
        height: 250px;
    }

    label {
        font-size: 8px;
    }

    #congratulations-message {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    #container{
        width: 303px;
		height: 170px;
    }

    #waste-rules{
        height: 170px;
    }

    label {
        font-size: 6px;
    }

    #congratulations-message {
        font-size: 8px;
    }
}
