*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.main{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgb(123, 174, 193);
}

.panel{
    width: 75%;
    height: 80%;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    border-radius: 10px;
}

.p-top{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 13%;
    width: 100%;
    background-color: rgb(52, 124, 150);
}

.box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    background-color: rgb(255, 255, 255);
    border-radius: 6px;
    color:rgb(55, 134, 162);
    font-size: 22px;
    font-weight: 600;
}

.elem h2{
    font-size: 22px;
    font-weight: 500;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.elem{
    display: flex;
    align-items: center;
    padding: 0px 40px;
    gap: 10px;
    color: white;
    font-size: 17px;
}

.p-btm{
    height: calc(100% - 13%);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.bubble{
    margin: 15px;
    padding: 25px;
    height: 25px;
    width: 30px;
    border-radius: 50%;
    background-color: rgb(36, 108, 135);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 23px;
}

.bubble:hover{
    cursor: pointer;
    background-color: rgb(43, 83, 106);
}

