* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gilroy";
}

body,
html {
    width: 100%;
    height: 100%;
}

#main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgb(137, 224, 110);
}

#panal {
    overflow: hidden;
    width: 80%;
    height: 90%;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
}

#ptop {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 80px;
    background-color: rgb(61, 137, 54);
}

.elem {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15%;
    color: white;
}


.elem h2 {
    font-weight: 600;
    font-size: 20px;
}

#box {
    padding: 10px 20px;
    color: green;
    background-color: aliceblue;
    font-weight: 700;
    border-radius: 5px;
    font-size: 20px;
}

#pbtm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    height: calc(100% - 80px);
    padding: 10px;
}

.bubble{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgb(61, 137, 54);
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    font-size: 18px;    
}

.bubble:hover{
    cursor: pointer;
    background-color: rgb(48, 108, 43);
}


/* ============================= */
/*      RESPONSIVE DESIGN        */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
    #panal {
        width: 90%;
        height: 92%;
    }

    #ptop {
        height: 70px;
    }

    .elem h2 {
        font-size: 18px;
    }

    #box {
        padding: 8px 16px;
        font-size: 18px;
    }

    .bubble {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* Mobile Phones */
@media (max-width: 600px) {
    #panal {
        width: 95%;
        height: 95%;
    }

    #ptop {
        height: 65px;
        padding: 0 10px;
        justify-content: space-between;
    }

    .elem {
        flex-direction: column;
        gap: 5px;
    }

    .elem h2 {
        font-size: 16px;
    }

    #box {
        padding: 6px 12px;
        font-size: 16px;
    }

    .bubble {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
}

/* Very Small Mobiles */
@media (max-width: 400px) {
    .elem h2 {
        font-size: 14px;
    }

    #box {
        padding: 5px 10px;
        font-size: 14px;
    }

    .bubble {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
