*{
    padding: 0;
    margin: 0;

}

body{
    background-color: rgb(136, 192, 136);
    display: flex;
    align-items: center;
    justify-content: center;
}
#panel{
    height: 700px;
    width: 950px;
    background-color: aliceblue;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    color: black;
    
    
}
#taskbar{
    height: 130px;
    width: 100%;
    background-color: rgb(48, 103, 48); 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    
}
.elem{
    height: 100px;
    width: 100px;
    font-weight: 700;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
h2{
    color: white;
}
.box{
    height:40px;
    width: 40px;
    background-color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    border-radius: 5px;
}
#whitespace{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: black ;

}
.bubble{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: rgb(62, 140, 62);
    color: white;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}
.bubble:hover{
    background-color: rgb(48, 103, 48) ;
    cursor: pointer;
}
h1{
    color: black;;
    
}
