*{
    margin: 0;
    padding: 0;
    font-family: 'Cascadia Code';
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
}
.main{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(32, 30, 30);
}
.panel{
    width: 80%;
    height: 80%;
    background-color: rgb(44, 40, 40);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgb(61, 61, 61);
    transition: all 0.3s ease;
}
.panel:hover{
    box-shadow: none;
}
.ptop{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25%;
    color: black;
    width: 100%;
    height: 80px;
    background-color: #ffb742;
}
.elem{
    display: flex;
    align-items: center;
    gap: 20px;
}
.elem h2{
    font-weight: 500;
    font-size: 25px;
}
.box{
    padding: 10px 20px;
    font-weight: 600;
    font-size: 22px;
    border-radius: 10px;
    background-color: #212121;
    color: white;
}
.pbtm{
    width: 100%;
    height: calc(100% - 80px);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.pbtm > h1{
    color: #898585;
}
.bubble{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: white;
    background-color: gray;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.bubble:hover{
    background-color: rgb(28, 27, 27);
}