*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: a;
    src: url(./jost-variable.ttf);
}

html,body{
    height: 100%;
    width: 100%;
}

#main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: lightgreen;
}

#panel{
    height: 80%;
    width: 80%;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;

}

#panel-top{
    display: flex;
    align-items: center;
    justify-content:space-between;
    width: 100%;
    height: 100px;
    background-color: darkgreen;
    color: #fff;
    padding: 0 30%;
    font-family: a;
}

.elem{
    display: flex;
    align-items: center;
    gap: 20px;
}

.box{
    padding: 10px 20px;
    background-color: #fff;
    color: black;
    font-weight: 600;
    font-size: 25px;
    border-radius: 5px;
}

#panel-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    width: 100%;
    height: calc(100% - 100px) ;
}

.Bubble{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-family: a;
    width: 60px;
    height: 60px;
    background-color: rgb(69, 184, 222);
    color: #fff;
    border-radius: 50%;  
    cursor: pointer;
    transition: all ease 0.6s;
}

.Bubble:hover{
    background-color: rgb(27, 27, 148);
    scale: 1.1;
    font-size: 25px;
}




