@import url('https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bitcount Grid Double";
}
html,body{
    height: 100%;
    width: 100%;
}
#main{
    height: 100%;
    width: 100%;
    background-color: rgb(157, 212, 157);
    display: flex;
    align-items: center;
    justify-content: center;
}
#main #panel{
    height: 80%;
    width: 80%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
#panel-top{
    width: 100%;
    height: 100px;
    background-color: rgb(55, 111, 55);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20%;
}
.box{
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 600;
    color: rgb(52, 108, 52);
}
#elem{
    display: flex;
    align-items: center;
    gap: 10px;
}
#elem h2{
    font-weight: 500;
    color: #fff ;
    font-size: 28px;
}
#panel-btm{
    width: 100%;
    height: calc(100% - 100px);
    padding: 8px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
#bubble{
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: rgb(52, 108, 52);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin: 7px;
    font-family: "Urbanist";
}
#bubble:hover{
    background-color: rgb(22, 61, 22);
    cursor: pointer;
    transition: all ease-in-out 0.5s;
}