*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

html,body {
    width: 100%;
    height: 100%;
}

#main{
    height: 100%;
    width: 100%;
    background-color: lightgreen;
    display: flex;
    justify-content: center;
    align-items: center;
}

#panel {
    overflow: hidden;
    width: 80%;
    height: 80%;
    border-radius: 40px;
    background-color: white;
}

#ptop{
    width: 100%;
    height: 100px;
    background-color: rgb(83, 138, 83);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35%;

}

.elem{
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(0, 0, 0);
    font-size: larger;
}

.val{
    background-color: rgb(255, 255, 255);
    padding: 7px;
    border-radius: 4px;
    color: rgb(83, 138, 83);
}

#pbot {
    height: calc(100% - 100px);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* background-color: rgb(0, 0, 0); */
    
}

#over{
    font-size: 50px;
    font-weight: 800;
}

.bubble {
    background-color: rgb(62, 151, 62);
    color: white;
    height: 50px;
    width: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
}

.bubble:hover {
    background-color: rgb(41, 87, 41);
    cursor: pointer;
}