*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gilrouy";
}
html,body{
    width: 100%;
    height: 100%;
}
#main{
    width: 100%;
    height: 100%;
    background-color: rgb(205, 207, 206);
    display: flex;
    justify-content: center;
    align-items: center;
}
#panel{
    overflow: hidden;
    width: 80%;
    height: 80%;
    background-color: #fff;
    border-radius: 10px;
}
#ptop
{
    width: 100%;
    height: 5em;
    background-color: rgb(158, 250, 198);
    display: flex;
    flex-direction: row;
    border: 2px solid rgb(26, 75, 52);
    justify-content:space-around
}
.element
{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 30%;
}
.element h1{
    font-weight: 600;
}
.box{
    height: 3em;
    width: 3em;
    padding: 10px;
    background-color: #fff;
    border: 2px dashed black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
}
#pbottom{
    padding: 10px 10px 10px 10px;
    height: calc(100% - 5em);
    width: 100%;
    border: 2px solid rgb(26, 75, 52);
    background-color: rgb(222, 221, 201);
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.bubble{
    width: 60px;
    height: 60px;
    background-color: aqua;
    color: #203f9a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: x-large;
}
.bubble:hover{
    background-color: rgb(185, 152, 215);
    cursor: pointer;
}
#star1{
    height: 7vh;
    width: 10vh;
    border-radius: 5px;
    color: black;
    background-color: rgb(201, 156, 226);
    font-weight: 900;
}