*{
    margin: 0;
    padding: 0;
    box-sizing: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

html,body{
    width: 100%;
    height: 100%;
}

#main{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-image: url(bg.jpg);

}

#panel{
    overflow: hidden;
    width: 80%;
    height: 80%;
    background-color:rgb(225, 204, 223);
    border-radius: 10px;
}

#top{
    padding: 0px 200px 0px 10px;
    justify-content: space-around;
    align-items: center;
    display: flex;
    color: white;
    width: 100%;
    height: 100px;
    background-color: rgb(146, 88, 200);

}
.box{
    padding: 10px;
    height: 1cm;
    width: 1.2cm;
    background-color: white;
    border-radius: 5px;
    color:rgb(157, 95, 157) ;
    font-weight: 750;
    font-size: 25px;
}
.elem{
    display: flex;
    align-items: center;
    gap: 20px;
}
#bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    color:rgb(63, 1, 1);
    font-size:large;
    gap: 10px;
    flex-wrap: wrap;
    padding: -60px;
    height: calc(100% - 100px);
    width: 100%;
    background-color: rgb(205, 170, 237);
}
.bubble{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height:60px;
    background-color: rgb(181, 124, 194);
    color: white;
    border-radius: 50%;
    font-size: larger;
    font-weight: 500;
}

.bubble:hover{
    cursor: pointer;
    background-color: rgb(193, 126, 255);
}

.sc{
    font-size: smaller;
    color: rgb(109, 30, 21);
    margin-top: 200px;
    margin-right: 20%;
    
}